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