Files
red-valley/resources/[framework]/[depends]/phone-render/module/objects/LineLoop.js
2026-03-29 21:41:17 +03:00

25 lines
349 B
JavaScript

import { Line } from './Line.js';
/**
* @author mgreter / http://github.com/mgreter
*/
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 };