|
Point Constructor
|
Creates a new instance of the
Point class.
Namespace: GSF.DrawingAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.248-beta+a497a19de709fd99e2448886199a2c8824265ddf
Syntaxpublic Point(
double x,
double y
)
Public Sub New (
x As Double,
y As Double
)
public:
Point(
double x,
double y
)
new :
x : float *
y : float -> Point
GSF.Drawing.Point = function(x, y);
View SourceParameters
- x Double
- The x-coordinate of the point.
- y Double
- The y-coordinate of the point.
See Also