Package skyview.geometry.projecter
Class Csc.CscDeproj
- java.lang.Object
-
- skyview.geometry.Transformer
-
- skyview.geometry.Deprojecter
-
- skyview.geometry.projecter.Csc.CscDeproj
-
- All Implemented Interfaces:
java.io.Serializable,Component
- Enclosing class:
- Csc
public class Csc.CscDeproj extends Deprojecter
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CscDeproj()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDescription()Get a description of the componentjava.lang.StringgetName()Get the name of the componentProjecterinverse()Get the inverse of the transformation.booleanisInverse(Transformer t)Is this an inverse of some other transformation?voidtransform(double[] plane, double[] sphere)Deproject a point from the plane to the sphere.-
Methods inherited from class skyview.geometry.Deprojecter
getInputDimension, getOutputDimension
-
Methods inherited from class skyview.geometry.Transformer
transform, transform
-
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Get the name of the component
-
getDescription
public java.lang.String getDescription()
Get a description of the component
-
inverse
public Projecter inverse()
Description copied from class:TransformerGet the inverse of the transformation. If the order matters, then the inverse is to be applied after the original transformation. This is primarily an issue with Converters.- Specified by:
inversein classTransformer
-
isInverse
public boolean isInverse(Transformer t)
Is this an inverse of some other transformation?- Specified by:
isInversein classTransformer
-
transform
public final void transform(double[] plane, double[] sphere)Deproject a point from the plane to the sphere.- Specified by:
transformin classTransformer- Parameters:
plane- a double[2] vector in the tangent plane.sphere- a preallocated double[3] vector.
-
-