Divides a
Vector2d by a number, having the effect of shrinking it.
(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 Vector2d Divide(
Vector2d vector,
double t
)
Public Shared Function Divide (
vector As Vector2d,
t As Double
) As Vector2d
Parameters
- vector
- Type: Rhino.GeometryVector2d
A vector. - t
- Type: SystemDouble
A number.
Return Value
Type:
Vector2dA new vector that is component-wise divided by t.
See Also