Method | Description | |
---|---|---|
ToString ( ) : string |
Returns the string representation of this vector.
|
|
Vector2 ( float x, float y ) : System |
Constructs and initializes a two-dimensional vector from the * specified xy-coordinates.
|
|
operator ( ) : Vector2 |
Computes the scalar multiplication of the specified * two-dimensional vector with the specified scalar value.
|
|
operator ( ) : float |
Computes the dot product of the two specified * two-dimensional vectors.
|
|
x ( ) : float |
Returns the x-coordinate of this two-dimensional vector. *
|
|
y ( ) : float |
Returns the y-coordinate of this two-dimensional vector. *
|
public Vector2 ( float x, float y ) : System | ||
x | float | The x-coordinate of the two-dimensional vector. * |
y | float | The y-coordinate of the two-dimensional vector. * |
return | System |