Message 1 of 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
My design is set to mm unit.
This code generates points at (0,0), (10,-20), etc.
It looks like the unit is cm rather than mm.
for i in range(10):
points.add(adsk.core.Point3D.create(i,i*2,0))
Solved! Go to Solution.