Vector3fDivide Method (Vector3f, Single) |
Divides a
Vector3f by a number, having the effect of shrinking it, t times.
(Provided for languages that do not support operator overloading. You can use the / operator otherwise)
Namespace:
Rhino.Geometry
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 6.0
Syntax public static Vector3f Divide(
Vector3f vector,
float t
)
Public Shared Function Divide (
vector As Vector3f,
t As Single
) As Vector3f
Parameters
- vector
- Type: Rhino.GeometryVector3f
A vector. - t
- Type: SystemSingle
A number.
Return Value
Type:
Vector3fA new vector that is component-wise divided by t.
See Also