@bitbybit-dev/occt
Version:
Bit By Bit Developers CAD algorithms using OpenCascade Technology kernel. Run in Node and in Browser.
22 lines (21 loc) • 773 B
TypeScript
import { OpenCascadeInstance } from "../../../bitbybit-dev-occt/bitbybit-dev-occt";
import { OccHelper } from "../../occ-helper";
import { OCCTCompound } from "./compound";
import { OCCTVertex } from "./vertex";
import { OCCTEdge } from "./edge";
import { OCCTFace } from "./face";
import { OCCTShape } from "./shape";
import { OCCTShell } from "./shell";
import { OCCTSolid } from "./solid";
import { OCCTWire } from "./wire";
export declare class OCCTShapes {
readonly vertex: OCCTVertex;
readonly edge: OCCTEdge;
readonly wire: OCCTWire;
readonly face: OCCTFace;
readonly shell: OCCTShell;
readonly solid: OCCTSolid;
readonly compound: OCCTCompound;
readonly shape: OCCTShape;
constructor(occ: OpenCascadeInstance, och: OccHelper);
}