Class Point
A location.
Inheritance
System.Object
Point
Namespace: Mannequin.Bindings
Assembly: Collapse.dll
Syntax
public class Point : object
Constructors
Point()
Creates a point at (0, 0).
Declaration
public Point()
Point(Int32, Int32)
Creates a point at (x, y).
Declaration
public Point(int x, int y)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | x | The X-coordinate |
System.Int32 | y | The Y-coordinate |
Properties
X
The x-coordinate of this Point.
Declaration
public int X { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Y
The y-coordinate of this Point.
Declaration
public int Y { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |