@bitbybit-dev/occt
Version:
Bit By Bit Developers CAD algorithms using OpenCascade Technology kernel. Run in Node and in Browser.
12 lines (11 loc) • 597 B
TypeScript
import { BitbybitOcctModule, TopoDS_Compound } from "../../bitbybit-dev-occt/bitbybit-dev-occt";
import { OccHelper } from "../occ-helper";
import * as Inputs from "../api/inputs";
export declare class OCCTDimensions {
private readonly occ;
private readonly och;
constructor(occ: BitbybitOcctModule, och: OccHelper);
simpleLinearLengthDimension(inputs: Inputs.OCCT.SimpleLinearLengthDimensionDto): TopoDS_Compound;
simpleAngularDimension(inputs: Inputs.OCCT.SimpleAngularDimensionDto): TopoDS_Compound;
pinWithLabel(inputs: Inputs.OCCT.PinWithLabelDto): TopoDS_Compound;
}