Point.Point Constructors
Initializes a new instance of the Point class.
Overload List
Name | Description | |
---|---|---|
Public method | Point() | Initializes a new instance of the Point class with all coordinates set to zero. |
Public method | Point(System.Double x, System.Double y) | Initializes a new instance of the Point class and sets the x and y-coordinates. |
Public method | Point(System.Double x, System.Double y, System.Double z) | Initializes a new instance of the Point class and sets all coordinates. |
Point()
Initializes a new instance of the Point class with all coordinates set to zero.Syntax
public Point ()
Point(System.Double x, System.Double y)
Initializes a new instance of the Point class and sets the x and y-coordinates.Syntax
public Point (
System.Double x,
System.Double y
)
Parameters
x
Type: System.Double
The initial x-coordinate.
The initial x-coordinate.
y
Type: System.Double
The initial y-coordinate.
The initial y-coordinate.
Point(System.Double x, System.Double y, System.Double z)
Initializes a new instance of the Point class and sets all coordinates.Syntax
public Point (
System.Double x,
System.Double y,
System.Double z
)
Parameters
x
Type: System.Double
The initial x-coordinate.
The initial x-coordinate.
y
Type: System.Double
The initial y-coordinate.
The initial y-coordinate.
z
Type: System.Double
The initial z-coordinate.
The initial z-coordinate.
Platforms
Windows, Linux, Android