@bitbybit-dev/occt
Version:
Bit By Bit Developers CAD algorithms using OpenCascade Technology kernel. Run in Node and in Browser.
21 lines (20 loc) • 730 B
JavaScript
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 class OCCTShapes {
constructor(occ, och) {
this.vertex = new OCCTVertex(occ, och);
this.edge = new OCCTEdge(occ, och);
this.wire = new OCCTWire(occ, och);
this.face = new OCCTFace(occ, och);
this.shell = new OCCTShell(occ, och);
this.solid = new OCCTSolid(occ, och);
this.compound = new OCCTCompound(occ, och);
this.shape = new OCCTShape(occ, och);
}
}