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