Package skyview.geometry.projecter
Class Mol.MolDeproj
- java.lang.Object
-
- skyview.geometry.Transformer
-
- skyview.geometry.Deprojecter
-
- skyview.geometry.projecter.Mol.MolDeproj
-
- All Implemented Interfaces:
java.io.Serializable
,Component
- Enclosing class:
- Mol
public class Mol.MolDeproj extends Deprojecter
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MolDeproj()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getDescription()
Description of componentjava.lang.String
getName()
Name of componentProjecter
inverse()
Get the inverse transformationboolean
isInverse(Transformer trans)
Is this the inverse of another transformation?void
transform(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()
Name of component
-
getDescription
public java.lang.String getDescription()
Description of component
-
inverse
public Projecter inverse()
Get the inverse transformation- Specified by:
inverse
in classTransformer
-
isInverse
public boolean isInverse(Transformer trans)
Is this the inverse of another transformation?- Specified by:
isInverse
in classTransformer
-
transform
public final void transform(double[] plane, double[] sphere)
Deproject a point from the plane to the sphere.- Specified by:
transform
in classTransformer
- Parameters:
plane
- The input position in the projection plane.sphere
- A preallocated 3-vector to hold the unit vector result.
-
-