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
I created a simple polygon sketch on XY, then revolved it around the Y axis. Once the revolve operation as added, and I select the sketch in the model view or in the code view, the "Edit sketch" button comes up, but clicking on the button yields no change in the model view. I cannot edit the sketch.
yeroca
changed the title
[BUG]: After creating model using revolve, I cannout use the point/click modeling editor to change the sketch
[BUG]: After creating model using revolve, I cannout use the point/click modeling editor to edit the sketch
May 29, 2024
The issue here is that when you add that |> revolve({ axis: 'Y' }) to the end of the sketch's pipe, it transforms part001 from a SketchGroup type to a RevolveGroup type. So when you go to select it, either through code or point-and-click, our system isn't smart enough (yet) to know that what you just clicked is something with both a SketchGroup and a RevolveGroup, and therefore enable the Edit Sketch button for you. We definitely want it to do that in the future, but in the meantime by separating the constants you should be able to click anywhere on your revolved item and see the Edit Sketch button available.
Describe the bug
I created a simple polygon sketch on XY, then revolved it around the Y axis. Once the revolve operation as added, and I select the sketch in the model view or in the code view, the "Edit sketch" button comes up, but clicking on the button yields no change in the model view. I cannot edit the sketch.
Steps to Reproduce
const part001 = startSketchOn('XY')
|> startProfileAt([2, 0], %)
|> line([10, 0], %)
|> line([0, 2], %)
|> line([-2, 0], %)
|> line([-0, -1], %)
|> line([-8, 0], %)
|> close(%)
|> revolve({ axis: 'Y' }, %) // default angle is 360
Expected Behavior
I expected that I should be able to edit the polygon sketch.
Screenshots and Recordings
No response
Desktop OS
Windows 10
Browser
N/A
Version
0.21.9
Additional Context
I made a video, but it turned out too large to attach here. If you are unable to reproduce this bug, please let me know.
The text was updated successfully, but these errors were encountered: