math.geom2d.transform
Interface Transform2D

All Known Subinterfaces:
Bijection2D, Projection2D
All Known Implementing Classes:
AffineTransform2D, CircleInversion2D, CircleProjection2D, LineProjection2D

public interface Transform2D

general class for all transformation in the plane, linear or not linear.


Method Summary
 Point2D transform(Point2D src)
          Transforms a point
 Point2D[] transform(Point2D[] src, Point2D[] dst)
          Transforms an array of points, and returns the transformed points.
 

Method Detail

transform

Point2D transform(Point2D src)
Transforms a point


transform

Point2D[] transform(Point2D[] src,
                    Point2D[] dst)
Transforms an array of points, and returns the transformed points.