skyview.geometry.spheredistorter
Class BesselianDistorter

java.lang.Object
  extended by skyview.geometry.Transformer
      extended by skyview.geometry.SphereDistorter
          extended by skyview.geometry.spheredistorter.BesselianDistorter
All Implemented Interfaces:
java.io.Serializable, Component

public class BesselianDistorter
extends SphereDistorter

This class implements the distortion of Besselian coordinate systems.

See Also:
Serialized Form

Nested Class Summary
 class BesselianDistorter.BesselianInverseDistorter
          This inner class defines the inverse distortion to the enclosing Besselian distorter.
 
Constructor Summary
BesselianDistorter()
           
 
Method Summary
 java.lang.String getDescription()
          What does this object do?
 java.lang.String getName()
          A name for this object
 SphereDistorter inverse()
          Get the inverse distorter
 boolean isInverse(Transformer t)
          Is the the inverse of another transformation
 void transform(double[] x, double[] y)
          Convert a single point where the output vector is supplied.
 
Methods inherited from class skyview.geometry.SphereDistorter
getInputDimension, getOutputDimension
 
Methods inherited from class skyview.geometry.Transformer
transform, transform
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

BesselianDistorter

public BesselianDistorter()
Method Detail

inverse

public SphereDistorter inverse()
Get the inverse distorter

Specified by:
inverse in class SphereDistorter

isInverse

public boolean isInverse(Transformer t)
Is the the inverse of another transformation

Specified by:
isInverse in class Transformer

getName

public java.lang.String getName()
Description copied from class: SphereDistorter
A name for this object

Specified by:
getName in interface Component
Overrides:
getName in class SphereDistorter

getDescription

public java.lang.String getDescription()
Description copied from class: SphereDistorter
What does this object do?

Specified by:
getDescription in interface Component
Overrides:
getDescription in class SphereDistorter

transform

public final void transform(double[] x,
                            double[] y)
Description copied from class: Transformer
Convert a single point where the output vector is supplied.

Specified by:
transform in class Transformer
Parameters:
x - The input vector.
y - The output vector, it may be the same as the input vector if the dimensionalities are the same. All transformers are expected to work with aliased inputs and output.