Package skyview.geometry.projecter
Class Hpx.HpxDeproj
java.lang.Object
skyview.geometry.Transformer
skyview.geometry.Deprojecter
skyview.geometry.projecter.Hpx.HpxDeproj
- All Implemented Interfaces:
Serializable
,Component
- Enclosing class:
Hpx
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGet the description of this component.getName()
Get the name of this component.inverse()
Get the inverse of the transformation.boolean
Are these two transformations, inverses of each other? This method is used to optimize a series of transformations where transformations.void
transform
(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
-
Constructor Details
-
HpxDeproj
public HpxDeproj()
-
-
Method Details
-
getName
Description copied from interface:Component
Get the name of this component. -
getDescription
Description copied from interface:Component
Get the description of this component. -
inverse
Description copied from class:Transformer
Get 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:
inverse
in classTransformer
-
isInverse
Description copied from class:Transformer
Are these two transformations, inverses of each other? This method is used to optimize a series of transformations where transformations.- Specified by:
isInverse
in classTransformer
-
transform
public void transform(double[] plane, double[] sphere) Description copied from class:Transformer
Convert a single point where the output vector is supplied.- Specified by:
transform
in 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.
-