UNPKG

@bitbybit-dev/occt

Version:

Bit By Bit Developers CAD algorithms using OpenCascade Technology kernel. Run in Node and in Browser.

34 lines (33 loc) 1.04 kB
export class OCCTVertex { constructor(occ, och) { this.occ = occ; this.och = och; } vertexFromXYZ(inputs) { return this.och.verticesService.vertexFromXYZ(inputs); } vertexFromPoint(inputs) { return this.och.verticesService.vertexFromPoint(inputs); } verticesFromPoints(inputs) { return this.och.verticesService.verticesFromPoints(inputs); } verticesCompoundFromPoints(inputs) { return this.och.verticesService.verticesCompoundFromPoints(inputs); } getVertices(inputs) { return this.och.verticesService.getVertices(inputs); } getVerticesAsPoints(inputs) { return this.och.verticesService.getVerticesAsPoints(inputs); } verticesToPoints(inputs) { return this.och.verticesService.verticesToPoints(inputs); } vertexToPoint(inputs) { return this.och.verticesService.vertexToPoint(inputs); } projectPoints(inputs) { return this.och.verticesService.projectPoints(inputs); } }