Package skyview.geometry.projecter
Class Arc
- java.lang.Object
-
- skyview.geometry.Transformer
-
- skyview.geometry.Projecter
-
- skyview.geometry.projecter.Arc
-
- All Implemented Interfaces:
java.io.Serializable,Component
public class Arc extends Projecter
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description classArc.ArcDeproj
-
Constructor Summary
Constructors Constructor Description Arc()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDescription()Get a description for the componentjava.lang.StringgetName()Get a name for the componentDeprojecterinverse()Get this inverse of the 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, getXTiling, getYTiling, shadowPoint, straddle, straddleable, straddleComponents, tissot
-
Methods inherited from class skyview.geometry.Transformer
transform, transform
-
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Get a name for the component
-
getDescription
public java.lang.String getDescription()
Get a description for the component
-
inverse
public Deprojecter inverse()
Get this inverse of the transformation
-
isInverse
public boolean isInverse(Transformer t)
Is this an inverse of some other transformation?- Specified by:
isInversein classTransformer
-
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
-
-