Multiplication(Single,Vector2) Operator
In This Topic
Scales a vector by the given value.
Syntax
'Declaration
Overloads Public Operator *( _
ByVal As System.Single, _
ByVal As Vector2 _
) As Vector2
public Vector2 operator *(
System.float ,
Vector2
)
Parameters
- scale
- The amount by which to scale the vector.
- value
- The vector to scale.
Return Value
The scaled vector.
See Also