DicomObjects.NET.8.48 Documentation
DicomObjects Namespace / Plane3D Structure / Plane3D Constructor / Plane3D Constructor(Vector3D,Point3D)
The normal to the plane
The point to pass through






In This Topic
    Plane3D Constructor(Vector3D,Point3D)
    In This Topic
    Construct a plane with a defined normal, pasing through a defined point
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal Normal As System.Windows.Media.Media3D.Vector3D, _
       ByVal Point As System.Windows.Media.Media3D.Point3D _
    )
    'Usage
     
    
    Dim Normal As System.Windows.Media.Media3D.Vector3D
    Dim Point As System.Windows.Media.Media3D.Point3D
     
    Dim instance As New Plane3D(Normal, Point)
    public Plane3D( 
       System.Windows.Media.Media3D.Vector3D Normal,
       System.Windows.Media.Media3D.Point3D Point
    )
    public Plane3D( 
        Normal: System.Windows.Media.Media3D.Vector3D;
        Point: System.Windows.Media.Media3D.Point3D
    ); 
    public function Plane3D( 
       Normal : System.Windows.Media.Media3D.Vector3D,
       Point : System.Windows.Media.Media3D.Point3D
    );
    public: Plane3D( 
       System.Windows.Media.Media3D.Vector3D Normal,
       System.Windows.Media.Media3D.Point3D Point
    )
    public:
    Plane3D( 
       System.Windows.Media.Media3D.Vector3D Normal,
       System.Windows.Media.Media3D.Point3D Point
    )

    Parameters

    Normal
    The normal to the plane
    Point
    The point to pass through
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also