Property | Type | Description | |
---|---|---|---|
X | int | ||
Y | int |
Method | Description | |
---|---|---|
Mid ( Point a, Point b ) : Point |
Returns the midpoint between two points.
|
|
Point ( int x, int y ) : System |
Initializes a new instance of the StdPaint.Point structure with the specified coordinates.
|
|
ToString ( ) : string |
Returns a string representing this Point.
|
|
ToVector2 ( ) : Vector2 |
Returns a Vector2 object that contains the Point's current coordinates.
|
|
VectorDot ( Point a, Point b ) : int |
Returns the dot product between two points.
|
|
operator ( ) : Point |
Multiplies two points.
|
public static Mid ( Point a, Point b ) : Point | ||
a | Point | The first point. |
b | Point | The second point. |
return | Point |
public Point ( int x, int y ) : System | ||
x | int | The X position. |
y | int | The Y position. |
return | System |
public static VectorDot ( Point a, Point b ) : int | ||
a | Point | The first point. |
b | Point | The second point. |
return | int |