const start = async () => {
const squareOpt = new Bit.Inputs.OCCT.SquareDto();
const square = await bitbybit.occt.shapes.wire.createSquareWire(squareOpt);
const squareFillet = await bitbybit.occt.fillets.fillet2d({
shape: square,
radiusList: [0.1, 0.3],
indexes: [1, 3]
});
bitbybit.draw.drawAnyAsync({
entity: squareFillet
});
}
start();