Initializes a new instance of the Point3d class.
Syntax
| Visual Basic (Declaration) | |
|---|
Public Function New( _
ByVal x As Single, _
ByVal y As Single, _
ByVal z As Single _
) |
| Visual Basic (Usage) | Copy Code |
|---|
Dim x As Single
Dim y As Single
Dim z As Single
Dim instance As Point3d(x, y, z)
|
| C# | |
|---|
public Point3d(
float x,
float y,
float z
) |
Parameters
- x
- The x coordinate of a point in a three-dimensional plane.
- y
- The y coordinate of a point in a three-dimensional plane.
- z
- The z coordinate of a point in a three-dimensional plane.
See Also