Spread WPF 18
GrapeCity.Spreadsheet.Drawing Namespace / Point3D Structure / Point3D Constructor
The x-coordinate of the point in 3D space.
The y-coordinate of the point in 3D space.
The z-coordinate of the point in 3D space.


In This Topic
    Point3D Constructor
    In This Topic
    Initializes a new instance of the Point3D struct with the specified coordinates.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal x As Double, _
       ByVal y As Double, _
       ByVal z As Double _
    )
    'Usage
     
    Dim x As Double
    Dim y As Double
    Dim z As Double
     
    Dim instance As New Point3D(x, y, z)
    public Point3D( 
       double x,
       double y,
       double z
    )

    Parameters

    x
    The x-coordinate of the point in 3D space.
    y
    The y-coordinate of the point in 3D space.
    z
    The z-coordinate of the point in 3D space.
    See Also