Reputation: 696
So I've looked all over Auto Cad's documentation, and it seems the most common ways to generate a Solid3d, is to extrude a region.
But suppose I actually have a list of points, or a list of faces. Does Auto Cad have methods for creating a Solid3d from the points?
Upvotes: 1
Views: 1775
Reputation: 13314
AutoCAD has a command SURFSCULPT to do this (from a set of surfaces that enclose a watertight area). The corresponding API is Solid3d.CreateSculptedSolid
. I don't think you can do something with points.
Upvotes: 2