|
Point2 Constructor
|
Initializes a new instance of the
Point2 struct.
constructor.
Namespace:
Karamba.Geometry
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
Syntaxpublic Point2(
double x = 0,
double y = 0
)
Public Sub New (
Optional x As Double = 0,
Optional y As Double = 0
)
public:
Point2(
double x = 0,
double y = 0
)
new :
?x : float *
?y : float
(* Defaults:
let _x = defaultArg x 0
let _y = defaultArg y 0
*)
-> Point2
Parameters
- x (Optional)
- Type: SystemDouble
x-coordinate. - y (Optional)
- Type: SystemDouble
y-coordinate.
See Also