
typescriptThis project contains demo scripts for TypeScript Monaco editor that are used as examples in the "Getting Started" section of the documentation.
const start = async () => {
const boxOpt = new Bit.Inputs.OCCT.BoxDto();
boxOpt.width = 5;
boxOpt.length = 8;
boxOpt.height = 10;
const box = await bitbybit.occt.shapes.solid.createBox(boxOpt);
const drawOpt = new Bit.Inputs.Draw.DrawOcctShapeOptions();
drawOpt.drawEdgeIndexes = true;
drawOpt.faceOpacity = 0.3;
drawOpt.edgeOpacity = 0.3;
drawOpt.edgeIndexHeight = 0.24
bitbybit.draw.drawAnyAsync({
entity: box,
options: drawOpt
});
}
start();
Select the perfect plan for your 3D development needs