Chamfer specific edges

Chamfer specific edges script details
Author
matas
Type
Typescript logo image
typescript
App Version
0.14.4
Visibility
public
Date Created
Feb 23, 2024, 3:02:50 PM
Last Edit Date
Feb 23, 2024, 3:03:38 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 chamfered = await bitbybit.occt.fillets.chamferEdges({ shape: box, distanceList: [0.2, 1.2, 2], indexes: [1, 2, 3] }) bitbybit.draw.drawAnyAsync({ entity: chamfered, }); } start();