|
Point Constructor
|
Creates a new instance of the
Point class.
Namespace: GSF.DrawingAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.251-beta+c370f3da3791592278238855631f53a5ff418c68
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