You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Could the rectangle sketch tool go ahead and generate the $rectangleSegmentD001 tag on the line to start? Edge treatment for all 4 corners is pretty common, so it would be helpful if the tag was already there.
Describe the bug
Could the rectangle sketch tool go ahead and generate the $rectangleSegmentD001 tag on the line to start? Edge treatment for all 4 corners is pretty common, so it would be helpful if the tag was already there.
Steps to Reproduce
const length = 125
const width = 75
const height = 70
const wallThickness = 5
const sketch001 = startSketchOn('XY')
|> startProfileAt([0, 0], %)
|> angledLine([0, width], %, $rectangleSegmentA001)
|> angledLine([
segAng(rectangleSegmentA001) + 90,
length
], %, $rectangleSegmentB001)
|> angledLine([
segAng(rectangleSegmentA001),
-segLen(rectangleSegmentA001)
], %, $rectangleSegmentC001)
|> lineTo([profileStartX(%), profileStartY(%)], %)
|> close(%)
const extrude001 = extrude(height, sketch001)
|> fillet({
radius: wallThickness,
tags: [
getNextAdjacentEdge(rectangleSegmentA001),
getNextAdjacentEdge(rectangleSegmentB001),
getNextAdjacentEdge(rectangleSegmentC001),
getNextAdjacentEdge(rectangleSegmentD001)
]
}, %)
|> shell({
faces: ["end"],
thickness: wallThickness
}, %)
Expected Behavior
auto tag all 4 edges for fillet or chamfer
Screenshots and Recordings
No response
Desktop OS
Win11
Browser
chrome
Version
v0.25
Additional Context
No response
The text was updated successfully, but these errors were encountered: