transform_vectors
- compas.geometry.transform_vectors(vectors, T)[source]
Transform multiple vectors with one transformation matrix.
- Parameters
vectors (list of
Vector
or list of list of float) – A list of vectors to be transformed.T (
Transformation
list of list of float) – The transformation to apply.
Examples
>>> vectors = [[1, 0, 0], [1, 2, 4], [4, 7, 1]] >>> T = matrix_from_axis_and_angle([0, 2, 0], math.radians(45), point=[4, 5, 6]) >>> vectors_transformed = transform_vectors(vectors, T)