Package skyview.geometry.projecter
Class Hpx.HpxDeproj
- java.lang.Object
-
- skyview.geometry.Transformer
-
- skyview.geometry.Deprojecter
-
- skyview.geometry.projecter.Hpx.HpxDeproj
-
- All Implemented Interfaces:
java.io.Serializable,Component
- Enclosing class:
- Hpx
public static class Hpx.HpxDeproj extends Deprojecter
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description HpxDeproj()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDescription()Get the description of this component.java.lang.StringgetName()Get the name of this component.Transformerinverse()Get the inverse of the transformation.booleanisInverse(Transformer t)Are these two transformations, inverses of each other? This method is used to optimize a series of transformations where transformations.voidtransform(double[] plane, double[] sphere)Convert a single point where the output vector is supplied.-
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()
Description copied from interface:ComponentGet the name of this component.
-
getDescription
public java.lang.String getDescription()
Description copied from interface:ComponentGet the description of this component.
-
inverse
public Transformer 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)
Description copied from class:TransformerAre these two transformations, inverses of each other? This method is used to optimize a series of transformations where transformations.- Specified by:
isInversein classTransformer
-
transform
public void transform(double[] plane, double[] sphere)Description copied from class:TransformerConvert a single point where the output vector is supplied.- Specified by:
transformin classTransformer- Parameters:
plane- The input vector.sphere- 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.
-
-