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 SDFVertex 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("SDFVertex.position not implemented"); return target; } normal(target) { console.warn("SDFVertex.normal not implemented"); return target; } }