1 Star 0 Fork 0

hys81021/three.js

Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
LineLoop.js 293 Bytes
Copy Edit Raw Blame History
Mugen87 authored 2020-07-29 04:46 +08:00 . Core: Remove author comments.
import { Line } from './Line.js';
function LineLoop( geometry, material ) {
Line.call( this, geometry, material );
this.type = 'LineLoop';
}
LineLoop.prototype = Object.assign( Object.create( Line.prototype ), {
constructor: LineLoop,
isLineLoop: true,
} );
export { LineLoop };
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hyscode/three.js.git
git@gitee.com:hyscode/three.js.git
hyscode
three.js
three.js
dev

Search