UNPKG

@polygonjs/polygonjs

Version:

node-based WebGL 3D engine https://polygonjs.com

25 lines (24 loc) 515 B
"use strict"; import { CoreVertex } from "../../entities/vertex/CoreVertex"; export class CsgVertex extends CoreVertex { constructor(object, index) { super(object, index); } geometry() { return void 0; } static attributes(object) { return; } static entitiesCount(object) { return 0; } position(target) { console.warn("CsgVertex.position not implemented"); return target; } normal(target) { console.warn("CsgVertex.normal not implemented"); return target; } }