Package skyview.geometry.projecter
Class Car.CarDeproj
- java.lang.Object
-
- skyview.geometry.Transformer
-
- skyview.geometry.Deprojecter
-
- skyview.geometry.projecter.Car.CarDeproj
-
- All Implemented Interfaces:
Serializable
,Component
- Enclosing class:
- Car
public class Car.CarDeproj extends Deprojecter
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CarDeproj()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDescription()
Return a description of the componentString
getName()
Get the name of the compontentdouble
getXTiling()
double
getYTiling()
Projecter
inverse()
Get the inverseboolean
isInverse(Transformer t)
Is this an inverse of some other 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 String getName()
Get the name of the compontent
-
isInverse
public boolean isInverse(Transformer t)
Is this an inverse of some other transformation?- Specified by:
isInverse
in classTransformer
-
getDescription
public String getDescription()
Return a description of the component
-
inverse
public Projecter inverse()
Get the inverse- Specified by:
inverse
in classTransformer
-
getXTiling
public double getXTiling()
-
getYTiling
public double getYTiling()
-
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
- a double[2] vector in the tangent plane.sphere
- a preallocated double[3] vector.
-
-