VectorDivision Operator (Vector, Double) |
Divide a vector by a scalar.
Namespace:
AGI.Foundation.Geometry
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public static Vector operator /(
Vector vector,
double factor
)
Public Shared Operator / (
vector As Vector,
factor As Double
) As Vector
public:
static Vector^ operator /(
Vector^ vector,
double factor
)
static let inline (/)
vector : Vector *
factor : float : Vector
Parameters
- vector
- Type: AGI.Foundation.GeometryVector
The vector to scale. - factor
- Type: SystemDouble
The scale factor.
Return Value
Type:
VectorA new vector representing the old vector divided by the given factor.
See Also