Vector.transform_collection

static Vector.transform_collection(collection, X)[source]

Transform a collection of vector objects.

Parameters:
collectionlist[[float, float, float] | compas.geometry.Vector]

The collection of vectors.

Returns:
None

Examples

>>> from compas.geometry import Rotation
>>> R = Rotation.from_axis_and_angle(Vector.Zaxis(), math.radians(90))
>>> u = Vector(1.0, 0.0, 0.0)
>>> vectors = [u]
>>> Vector.transform_collection(vectors, R)
>>> v = vectors[0]
>>> print(v)
Vector(x=0.000, y=1.000, z=0.000)
>>> u is v
True