Package skyview.geometry.spheredistorter
Class Besselian
- java.lang.Object
-
- skyview.geometry.Transformer
-
- skyview.geometry.SphereDistorter
-
- skyview.geometry.spheredistorter.Besselian
-
- All Implemented Interfaces:
java.io.Serializable,Component
public class Besselian extends SphereDistorter
This class implements the distortion of Besselian coordinate systems.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description classBesselian.BesselianInverseThis inner class defines the inverse distortion to the enclosing Besselian distorter.
-
Constructor Summary
Constructors Constructor Description Besselian()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDescription()What does this object do?java.lang.StringgetName()A name for this objectSphereDistorterinverse()Get the inverse distorterbooleanisInverse(Transformer t)Is the the inverse of another transformationvoidtransform(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
-
-
-
-
Method Detail
-
inverse
public SphereDistorter inverse()
Get the inverse distorter- Specified by:
inversein classSphereDistorter
-
isInverse
public boolean isInverse(Transformer t)
Is the the inverse of another transformation- Specified by:
isInversein classTransformer
-
getName
public java.lang.String getName()
Description copied from class:SphereDistorterA name for this object- Specified by:
getNamein interfaceComponent- Overrides:
getNamein classSphereDistorter
-
getDescription
public java.lang.String getDescription()
Description copied from class:SphereDistorterWhat does this object do?- Specified by:
getDescriptionin interfaceComponent- Overrides:
getDescriptionin classSphereDistorter
-
transform
public final void transform(double[] x, double[] y)Description copied from class:TransformerConvert a single point where the output vector is supplied.- Specified by:
transformin classTransformer- 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.
-
-