Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
.
The code is then supposed to create a sweep along the unchained selected edge, however,
the sweep body appears along a chained path despite using:
sel = ui.selectEntity('Select a path to create a pipe', 'Edges,SketchCurves')
selObj = sel.entity
feats = comp.features
chainedOption = adsk.fusion.ChainedCurveOptions.noChainedCurves
path = adsk.fusion.Path.create(selObj, chainedOption)
path = feats.createPath(selObj)
The following code creates a sketch of a semi-circle at the ends of the selected path. The profiles are revolved, creating two spheres at the end of the selected path. Next, the code creates a circle at one end of the selected path
I will be very grateful for any suggestions or feedback on fixing this issue.
Is there a method to create a pipe body along an unchained path using a loft in API?
Solved! Go to Solution.