VectorScaled Constructor (Vector, Double) |
Construct a new vector scaled by the given factor.
Namespace:
AGI.Foundation.Geometry
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public VectorScaled(
Vector vectorToScale,
double scaleFactor
)
Public Sub New (
vectorToScale As Vector,
scaleFactor As Double
)
public:
VectorScaled(
Vector^ vectorToScale,
double scaleFactor
)
new :
vectorToScale : Vector *
scaleFactor : float -> VectorScaled
Parameters
- vectorToScale
- Type: AGI.Foundation.GeometryVector
The vector to scale. - scaleFactor
- Type: SystemDouble
The constant factor by which to scale the vector.
Remarks This creates a
ScalarFixed to represent a constant scale factor.
See Also