Autodesk.AutoCAD.DatabaseServices Namespace > Solid Class > Solid Constructor > Solid(Point3d, Point3d, Point3d, Point3d) Constructor
Solid.Solid(Point3d, Point3d, Point3d, Point3d) Constructor
Description

 

This constructor uses pointer1-pointer4 as the four points for the solid. All points must be in WCS coordinates. The normal vector is initialized to (0,0,1) and the thickness is set to 0.0.

Visual Basic
Public Sub New(
    pointer1 As Point3d, 
    pointer2 As Point3d, 
    pointer3 As Point3d, 
    pointer4 As Point3d
)
C#
public Solid(
    Point3d pointer1, 
    Point3d pointer2, 
    Point3d pointer3, 
    Point3d pointer4
);
Parameters
Parameters 
Description 
Point3d pointer1 
Input first point (in WCS) for solid 
Point3d pointer2 
Input second point (in WCS) for solid 
Point3d pointer3 
Input third point (in WCS) for solid 
Point3d pointer4 
Input fourth point (in WCS) for solid 
Links
   Comments?