Vector2DDivision Operator |
Divides a vector by a number.
Namespace:
LightBuzz
Assembly:
LightBuzz (in LightBuzz.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static Vector2D operator /(
Vector2D vector,
float number
)
Public Shared Operator / (
vector As Vector2D,
number As Single
) As Vector2D
public:
static Vector2D operator /(
Vector2D vector,
float number
)
static let inline (/)
vector : Vector2D *
number : float32 : Vector2D
Parameters
- vector
- Type: LightBuzzVector2D
The vector to divide. - number
- Type: SystemSingle
The number by which the vector will be divided.
Return Value
Type:
Vector2DThe resulting vector.
See Also