|
Vector3ScaleVectors Method
|
Scales the vectors in a list by a given factor and returns the new list.
Namespace:
Karamba.Geometry
Assembly:
KarambaCommon (in KarambaCommon.dll) Version: 2.2.0.4 (2.2.0.4)
Syntaxpublic static List<Vector3> ScaleVectors(
List<Vector3> vecs,
double factor
)
Public Shared Function ScaleVectors (
vecs As List(Of Vector3),
factor As Double
) As List(Of Vector3)
public:
static List<Vector3>^ ScaleVectors(
List<Vector3>^ vecs,
double factor
)
static member ScaleVectors :
vecs : List<Vector3> *
factor : float -> List<Vector3>
Parameters
- vecs
- Type: System.Collections.GenericListVector3
List of vectors to scale. - factor
- Type: SystemDouble
Scaling factor.
Return Value
Type:
ListVector3List with scaled vectors.
See Also