Interface EuclideanTransform<V extends EuclideanVector<V>>

    • Method Detail

      • applyVector

        V applyVector​(V vec)
        Apply this transform to the given vector, ignoring translations.

        This method can be used to transform vector instances representing displacements between points. For example, if v represents the difference between points p1 and p2, then transform.applyVector(v) will represent the difference between p1 and p2 after transform is applied.

        Parameters:
        vec - the vector to transform
        Returns:
        the new, transformed vector