Script: Variable fillets on specific edges

Variable fillets on specific edges picture
Type
Typescript logo indicatortypescript
Author
matas
Date Created
Feb 21, 2024, 5:13:34 PM
Last Edit Date
Feb 21, 2024, 7:13:33 PM

Project Information

This project contains demo scripts for TypeScript Monaco editor that are used as examples in the "Getting Started" section of the documentation.

View Full Project

Script 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 filleted = await bitbybit.occt.fillets.filletEdges({
        shape: box,
        radiusList: [1, 2, 0.3],
        indexes: [1, 2, 3]
    })

    bitbybit.draw.drawAnyAsync({
        entity: filleted,
    });
}

start();