The code below hangs on new Bend line and takes around 30 seconds:
this.modifier = new ModifierStack(this.result);
const bendAngle = Math.PI / 180 * 90;
const bend = new Bend(1.5, 0.2, bendAngle);
bend.constraint = ModConstant.LEFT;
this.modifier.addModifier(bend);
this.result.rotateY(Math.PI / 180 * 45);
Am I doing something wrong or is this normal?
The code below hangs on
new Bendline and takes around 30 seconds:Am I doing something wrong or is this normal?