Point3D Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the Point3D class.
Overloads
Point3D() |
Initializes a new instance of the Point3D class. |
Point3D(Single, Single, Single) |
Initializes a new instance of the AnnotationPathPoint class with the specified X, Y and Z coordinates. |
Point3D()
Initializes a new instance of the Point3D class.
public:
Point3D();
public Point3D ();
Public Sub New ()
Applies to
Point3D(Single, Single, Single)
Initializes a new instance of the AnnotationPathPoint class with the specified X, Y and Z coordinates.
public:
Point3D(float x, float y, float z);
public Point3D (float x, float y, float z);
new System.Web.UI.DataVisualization.Charting.Point3D : single * single * single -> System.Web.UI.DataVisualization.Charting.Point3D
Public Sub New (x As Single, y As Single, z As Single)
Parameters
- x
- Single
The X coordinate of 3D point.
- y
- Single
The Y coordinate of 3D point.
- z
- Single
The Z coordinate, which represents the depth of 3D point.