Profiles disappear from 3D sketch

Profiles disappear from 3D sketch

hpekristiansen
Advocate Advocate
1,256 Views
6 Replies
Message 1 of 7

Profiles disappear from 3D sketch

hpekristiansen
Advocate
Advocate

Whenever I add a new closed loop to a 3D sketch, it creates a profile(as expected), but it also deletes the previous profile. Is this an error!?

 

Here I add three closed loops using arcs+lines and three circles. As can be seen on screenshot, it is only the very last one of the arc+line that creates a profile, but there is no problem with the circles. My further experiments shows, that there are no problems in the sketch plane.

 

import adsk.core, adsk.fusion, math

app = adsk.core.Application.get()
ui = app.userInterface
doc = app.documents.add(adsk.core.DocumentTypes.FusionDesignDocumentType)
design = app.activeProduct
rootComp = design.rootComponent

sketch = rootComp.sketches.add(rootComp.xYConstructionPlane)
arcs = sketch.sketchCurves.sketchArcs
lines = sketch.sketchCurves.sketchLines
circles = sketch.sketchCurves.sketchCircles

arcs.addByCenterStartSweep(adsk.core.Point3D.create(1, 1, 1), adsk.core.Point3D.create(1-0.5, 1, 1), math.pi)
lines.addByTwoPoints(adsk.core.Point3D.create(1-0.5, 1, 1), adsk.core.Point3D.create(1+0.5, 1, 1))

arcs.addByCenterStartSweep(adsk.core.Point3D.create(2, 2, 2), adsk.core.Point3D.create(2-0.5, 2, 2), math.pi)
lines.addByTwoPoints(adsk.core.Point3D.create(2-0.5, 2, 2), adsk.core.Point3D.create(2+0.5, 2, 2))

arcs.addByCenterStartSweep(adsk.core.Point3D.create(3, 3, 3), adsk.core.Point3D.create(3-0.5, 3, 3), math.pi)
lines.addByTwoPoints(adsk.core.Point3D.create(3-0.5, 3, 3), adsk.core.Point3D.create(3+0.5, 3, 3))

circles.addByCenterRadius(adsk.core.Point3D.create(4, 1, 1), 0.5)
circles.addByCenterRadius(adsk.core.Point3D.create(5, 2, 2), 0.5)
circles.addByCenterRadius(adsk.core.Point3D.create(6, 3, 3), 0.5)

 ProfilesProfiles

0 Likes
1,257 Views
6 Replies
Replies (6)
Message 2 of 7

goyals
Autodesk
Autodesk

This issue is fixed and will be available in coming Fusion releases. Here is the ticket number FUS-52057. Thanks for posting it.



Shyam Goyal
Sr. Software Dev. Manager
0 Likes
Message 3 of 7

hpekristiansen
Advocate
Advocate

Thank you. Unfortunately the fix is not yet included. I am hoping for the next one 🙂

ScreenShot2019-09-24T161743@1X.png

0 Likes
Message 4 of 7

goyals
Autodesk
Autodesk

Yes it is going to be part of next release. Thanks for your patience.



Shyam Goyal
Sr. Software Dev. Manager
0 Likes
Message 5 of 7

hpekristiansen
Advocate
Advocate

 

I think there has been two or three releases(updates of my Fusion 360), and the problem persists. Is it just taking longer than expected to migrate fixes to releases? -or maybe I do not understand what a 'release' is?

0 Likes
Message 6 of 7

goyals
Autodesk
Autodesk

Fusion release cycle is different from traditional CAD software. Some times If we discovered some serious issue which requires a hot fix then we put more updates after a release which mainly contains fix for some serious issue. That is what happened after September release and We ended up providing 3 updates.  The fix for this problem will come as part of October release which is coming very soon. Thank you for your patience.



Shyam Goyal
Sr. Software Dev. Manager
0 Likes
Message 7 of 7

hpekristiansen
Advocate
Advocate

After the bug fix, I have now encounter a new problem - please see this:

https://forums.autodesk.com/t5/fusion-360-support/sketch-profiles-added-in-random-order/td-p/9120284

0 Likes