VectorMultiply Operator (Double, Vector) |
Multiply 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 *(
double factor,
Vector vector
)
Public Shared Operator * (
factor As Double,
vector As Vector
) As Vector
public:
static Vector^ operator *(
double factor,
Vector^ vector
)
static let inline (*)
factor : float *
vector : Vector : Vector
Parameters
- factor
- Type: SystemDouble
The scale factor. - vector
- Type: AGI.Foundation.GeometryVector
The vector to scale.
Return Value
Type:
VectorA new vector representing the old vector multiplied by the given factor.
See Also