DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / Plane3D Structure / Plane3D Constructor / Plane3D Constructor(Vector3D,Double)
The normal to the plane
The distance to move






In This Topic
    Plane3D Constructor(Vector3D,Double)
    In This Topic
    Construct a plane with a defined normal, and a distance to move the plane along the normal.
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal Normal As System.Windows.Media.Media3D.Vector3D, _
       ByVal Constant As System.Double _
    )
    'Usage
     
    
    Dim Normal As System.Windows.Media.Media3D.Vector3D
    Dim Constant As System.Double
     
    Dim instance As New Plane3D(Normal, Constant)
    public Plane3D( 
       System.Windows.Media.Media3D.Vector3D Normal,
       System.double Constant
    )
    public Plane3D( 
        Normal: System.Windows.Media.Media3D.Vector3D;
        Constant: System.Double
    ); 
    public function Plane3D( 
       Normal : System.Windows.Media.Media3D.Vector3D,
       Constant : System.double
    );
    public: Plane3D( 
       System.Windows.Media.Media3D.Vector3D Normal,
       System.double Constant
    )
    public:
    Plane3D( 
       System.Windows.Media.Media3D.Vector3D Normal,
       System.double Constant
    )

    Parameters

    Normal
    The normal to the plane
    Constant
    The distance to move
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also