public interface XyzTransform
Copyright 2007 Partner Software, Inc.
| Modifier and Type | Method and Description |
|---|---|
boolean |
isIdentity()
True if this transform will return the input unchanged, and can therefore
be skipped or discarded.
|
java.util.List<XyzPoint> |
transform(java.util.List<XyzPoint> points)
Transform a list of XyzPoints.
|
XyzPoint[] |
transform(XyzPoint... points)
Transform an array of XyzPoints.
|
XyzPoint |
transform(XyzPoint point)
Transform a single (x, y, z) point.
|
boolean isIdentity()
XyzPoint transform(XyzPoint point)
point - point to transform.XyzPoint[] transform(XyzPoint... points)
points - points to transform.