VectorMultiply Operator (Double, Vector) | 
 
            Multiply a vector by a scalar.
            
 
    Namespace: 
   AGI.Foundation.Geometry
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic 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  : VectorParameters
- 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