public interface XyTransform
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<XyPoint> |
transform(java.util.List<XyPoint> points)
Transform a list of XyPoints.
|
XyPoint[] |
transform(XyPoint... points)
Transform an array of XyPoints.
|
XyPoint |
transform(XyPoint point)
Transform a single (x, y) point.
|
boolean isIdentity()
XyPoint transform(XyPoint point)
point - point to transform.XyPoint[] transform(XyPoint... points)
points - points to transform.