JIGL
v1.6

jigl.image.warp
Class IdentityTransform

java.lang.Object
  |
  +--jigl.image.warp.IdentityTransform
All Implemented Interfaces:
PointMapper

public class IdentityTransform
extends Object
implements PointMapper

Performs Identity Warp on a MappedImage. It is not implemented yet.


Constructor Summary
IdentityTransform()
           
 
Method Summary
 void inverseTransform(float[] x, float[] y)
          Performs the inverse of the Identity Transformation
 void inverseTransform(float[] x, float[] y, int offset, int count)
          Performs the inverse of the Identity Transformation
 void transform(float[] x, float[] y)
          Performs the Identity Transformation
 void transform(float[] x, float[] y, int offset, int count)
          Performs the Identity Transformation
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

IdentityTransform

public IdentityTransform()
Method Detail

transform

public void transform(float[] x,
                      float[] y)
               throws IllegalArgumentException
Performs the Identity Transformation

Specified by:
transform in interface PointMapper
Parameters:
x - an array containing the x coordinates
y - an array containing the y coordinates
IllegalArgumentException

inverseTransform

public void inverseTransform(float[] x,
                             float[] y)
                      throws IllegalArgumentException
Performs the inverse of the Identity Transformation

Specified by:
inverseTransform in interface PointMapper
Parameters:
x - an array containing the x coordinates
y - an array containing the y coordinates
IllegalArgumentException

transform

public void transform(float[] x,
                      float[] y,
                      int offset,
                      int count)
               throws IllegalArgumentException
Performs the Identity Transformation

Specified by:
transform in interface PointMapper
Parameters:
x - an array containing the x coordinates
y - an array containing the y coordinates
offset - the starting point of the array
count - the number of points from the offset to apply the transformation
IllegalArgumentException

inverseTransform

public void inverseTransform(float[] x,
                             float[] y,
                             int offset,
                             int count)
                      throws IllegalArgumentException
Performs the inverse of the Identity Transformation

Specified by:
inverseTransform in interface PointMapper
Parameters:
x - an array containing the x coordinates
y - an array containing the y coordinates
offset - the starting point of the array
count - the number of points from the offset to apply the transformation
IllegalArgumentException

JIGL
v1.6

Submit a bug or feature
Revised in May 2002 by Weiming Liu