Newer
Older
HuangJiPC / public / static / three / src / objects / LineLoop.js
@zhangdeliang zhangdeliang on 21 Jun 218 bytes update
import { Line } from './Line.js';

class LineLoop extends Line {

	constructor( geometry, material ) {

		super( geometry, material );

		this.isLineLoop = true;

		this.type = 'LineLoop';

	}

}

export { LineLoop };