@bitbybit-dev/occt-worker
Version:
Bit By Bit Developers CAD algorithms using OpenCascade Technology kernel adapted for WebWorker
21 lines (20 loc) • 714 B
TypeScript
import { OCCTCompound } from "./compound";
import { OCCTEdge } from "./edge";
import { OCCTFace } from "./face";
import { OCCTSolid } from "./solid";
import { OCCTWire } from "./wire";
import { OCCTWorkerManager } from "../../../occ-worker/occ-worker-manager";
import { OCCTShell } from "./shell";
import { OCCTShape } from "./shape";
import { OCCTVertex } from "./vertex";
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(occWorkerManager: OCCTWorkerManager);
}