UNPKG

@bitbybit-dev/occt

Version:

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

16 lines (15 loc) 455 B
export class OCCTDimensions { constructor(occ, och) { this.occ = occ; this.och = och; } simpleLinearLengthDimension(inputs) { return this.och.dimensionsService.simpleLinearLengthDimension(inputs); } simpleAngularDimension(inputs) { return this.och.dimensionsService.simpleAngularDimension(inputs); } pinWithLabel(inputs) { return this.och.dimensionsService.pinWithLabel(inputs); } }