Package skyview.geometry.projecter
Class Csc
- java.lang.Object
-
- skyview.geometry.Transformer
-
- skyview.geometry.Projecter
-
- skyview.geometry.projecter.Csc
-
- All Implemented Interfaces:
java.io.Serializable,Component
public final class Csc extends Projecter
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description classCsc.CscDeproj
-
Constructor Summary
Constructors Constructor Description Csc()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDescription()Get a descrption of the componentjava.lang.StringgetName()Get the name of the componentdoublegetXTiling()This map can repeat in X.Deprojecterinverse()Get the inverse transformationbooleanisInverse(Transformer t)Is this an inverse of some other transformation?voidtransform(double[] sphere, double[] plane)Project a point from the sphere to the plane.booleanvalidPosition(double[] plane)Is this a valid position in the projection plane for this image.-
Methods inherited from class skyview.geometry.Projecter
allValid, getInputDimension, getOutputDimension, getYTiling, shadowPoint, straddle, straddleable, straddleComponents, tissot
-
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 descrption of the component
-
inverse
public Deprojecter inverse()
Get the inverse transformation
-
isInverse
public boolean isInverse(Transformer t)
Is this an inverse of some other transformation?- Specified by:
isInversein classTransformer
-
getXTiling
public double getXTiling()
This map can repeat in X.- Overrides:
getXTilingin classProjecter- Returns:
- The period in X in radians. A value of 0 means that there is not periodicity.
-
transform
public final void transform(double[] sphere, double[] plane)Project a point from the sphere to the plane.- Specified by:
transformin classTransformer- Parameters:
sphere- a double[3] unit vectorplane- a double[2] preallocated vector.
-
validPosition
public boolean validPosition(double[] plane)
Description copied from class:ProjecterIs this a valid position in the projection plane for this image. This default is appropriate for all projections where the projection plane is infinite.- Overrides:
validPositionin classProjecter
-
-