Point3D 构造函数

定义

初始化 Point3D 类的新实例。

重载

Point3D()

初始化 Point3D 类的新实例。

Point3D(Single, Single, Single)

用指定的 X、Y 和 Z 坐标初始化 AnnotationPathPoint 类的新实例。

Point3D()

初始化 Point3D 类的新实例。

public:
 Point3D();
public Point3D ();
Public Sub New ()

适用于

Point3D(Single, Single, Single)

用指定的 X、Y 和 Z 坐标初始化 AnnotationPathPoint 类的新实例。

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)

参数

x
Single

三维点的 X 坐标。

y
Single

三维点的 Y 坐标。

z
Single

Z 坐标,表示三维点的深度。

适用于