UNPKG

@bitbybit-dev/occt

Version:

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

13 lines (12 loc) 321 B
export class OCCTCompound { constructor(occ, och) { this.occ = occ; this.och = och; } makeCompound(inputs) { return this.och.converterService.makeCompound(inputs); } getShapesOfCompound(inputs) { return this.och.shapeGettersService.getShapesOfCompound(inputs); } }