Message 1 of 5
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi, experts in Fusion360!
I met a problem when I want to create a construction point using following code:
# create a geo point
point1 = adsk.core.Point3D.create(0, 20, 0)
cons_points = rootComp.constructionPoints
cons_point_input = cons_points.createInput() # create a constructionPointInput var
cons_point_input.setByPoint(point1) # set by point
point = cons_points.add(cons_point_input)
geo_point = adsk.fusion.JointGeometry.createByPoint(point)
And the problem came out:
What is the "Environment" mean here? Is the python environment or the Fusion360 environment?
I search for the error "RuntimeError: 3: Environment is not supported" in google and this forum but do not find any thing.
Hoping for the community's help.
Thanks a lot!
And Merry Christmas to all the community and the Fusion360 experts!
Solved! Go to Solution.