CADopia - Creating Three-Dimensional Objects
CADopia allows you to create a variety of three-dimensional objects using Automation. You create and edit 3D objects much like you do 2D objects, using methods and properties applicable to specific objects. With 3D objects, however, you deal with a Z-value in addition to X and Y values.
Add3dFace method
Creates a 3D face object and adds it to the drawing. Input parameters are: default (Null) or three to four vertices; the fourth vertex is optional.
Syntax
object.Add3DFace(Point1, Point2, Point3, Point4)
Where:
object is one of the ModelSpace or PaperSpace collection objects or a Block object;
Point1, Point2, Point3, and Point4 are Point objects specifying locations of the 3DFace corners.
Comments