Drawing edge indexes on the solid

Drawing edge indexes on the solid script details
Author
matas
Type
Typescript logo image
typescript
App Version
0.14.4
Visibility
public
Date Created
Feb 21, 2024, 2:29:45 PM
Last Edit Date
Feb 21, 2024, 5:13:31 PM

Script Details

The Code
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();