Point Constructor (Double, Double, Double)
|
Initializes a new instance of the Point class.
Namespace:
DXFReaderNET.Entities
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public Point(
double x,
double y,
double z
)
Public Sub New (
x As Double,
y As Double,
z As Double
)
public:
Point(
double x,
double y,
double z
)
new :
x : float *
y : float *
z : float -> Point
CONSTRUCTOR(
x AS REAL8,
y AS REAL8,
z AS REAL8
)
Parameters
- x
- Type: SystemDouble
X coordinate. - y
- Type: SystemDouble
Y coordinate. - z
- Type: SystemDouble
Z coordinate.
See Also