V
- Vector implementation typepublic interface EuclideanTransform<V extends EuclideanVector<V>> extends Transform<V>
Modifier and Type | Method and Description |
---|---|
V |
applyVector(V vec)
Apply this transform to the given vector, ignoring translations.
|
inverse, preservesOrientation
identity
V applyVector(V vec)
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.
vec
- the vector to transformCopyright © 2016–2021 The Apache Software Foundation. All rights reserved.