Message 1 of 8
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I am creating a gridwork of points that I want to add to a sketch and can only determine how to do it one at a time. Is there a way to plot the entire list of points in one shot? Something more efficient then the following:
# Create sketch point
for i in points:
point = adsk.core.Point3D.create(i[0],i[1],i[2])
sketchPoint = sketchPoints.add(point)
Thanks in advance,
Eric
Solved! Go to Solution.