Plane3D Constructor(Vector3D,Vector3D,Vector3D)
In This Topic
Construct a plane from 3 coplanar points.
Syntax
'Declaration
Public Function New( _
ByVal As System.Windows.Media.Media3D.Vector3D, _
ByVal As System.Windows.Media.Media3D.Vector3D, _
ByVal As System.Windows.Media.Media3D.Vector3D _
)
'Usage
Dim point0 As System.Windows.Media.Media3D.Vector3D
Dim point1 As System.Windows.Media.Media3D.Vector3D
Dim point2 As System.Windows.Media.Media3D.Vector3D
Dim instance As New Plane3D(point0, point1, point2)
public Plane3D(
System.Windows.Media.Media3D.Vector3D ,
System.Windows.Media.Media3D.Vector3D ,
System.Windows.Media.Media3D.Vector3D
)
public Plane3D(
: System.Windows.Media.Media3D.Vector3D;
: System.Windows.Media.Media3D.Vector3D;
: System.Windows.Media.Media3D.Vector3D
);
public function Plane3D(
: System.Windows.Media.Media3D.Vector3D,
: System.Windows.Media.Media3D.Vector3D,
: System.Windows.Media.Media3D.Vector3D
);
public: Plane3D(
System.Windows.Media.Media3D.Vector3D ,
System.Windows.Media.Media3D.Vector3D ,
System.Windows.Media.Media3D.Vector3D
)
public:
Plane3D(
System.Windows.Media.Media3D.Vector3D ,
System.Windows.Media.Media3D.Vector3D ,
System.Windows.Media.Media3D.Vector3D
)
Parameters
- point0
- First point.
- point1
- Second point.
- point2
- Third point.
Requirements
Target Platforms: .NET CLR 4.8 or higher
See Also