Package org.orekit.frames
Class PythonStaticTransform
- java.lang.Object
-
- org.orekit.frames.PythonStaticTransform
-
- All Implemented Interfaces:
StaticTransform
,TimeStamped
public class PythonStaticTransform extends Object implements StaticTransform
-
-
Constructor Summary
Constructors Constructor Description PythonStaticTransform()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
finalize()
Part of JCC Python interface to objectAbsoluteDate
getDate()
Get the date.StaticTransform
getInverse()
Get the inverse transform of the instance.Rotation
getRotation()
Get the underlying elementary rotation.Vector3D
getTranslation()
Get the underlying elementary translation.void
pythonDecRef()
Part of JCC Python interface to objectlong
pythonExtension()
Part of JCC Python interface to objectvoid
pythonExtension(long pythonObject)
Part of JCC Python interface to object-
Methods inherited from class java.lang.Object
clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.orekit.frames.StaticTransform
transformLine, transformPosition, transformPosition, transformVector, transformVector
-
Methods inherited from interface org.orekit.time.TimeStamped
durationFrom
-
-
-
-
Method Detail
-
pythonExtension
public void pythonExtension(long pythonObject)
Part of JCC Python interface to object
-
pythonExtension
public long pythonExtension()
Part of JCC Python interface to object
-
finalize
public void finalize() throws Throwable
Part of JCC Python interface to object
-
pythonDecRef
public void pythonDecRef()
Part of JCC Python interface to object
-
getTranslation
public Vector3D getTranslation()
Get the underlying elementary translation.A transform can be uniquely represented as an elementary translation followed by an elementary rotation. This method returns this unique elementary translation.
- Specified by:
getTranslation
in interfaceStaticTransform
- Returns:
- underlying elementary translation
-
getRotation
public Rotation getRotation()
Get the underlying elementary rotation.A transform can be uniquely represented as an elementary translation followed by an elementary rotation. This method returns this unique elementary rotation.
- Specified by:
getRotation
in interfaceStaticTransform
- Returns:
- underlying elementary rotation
-
getInverse
public StaticTransform getInverse()
Get the inverse transform of the instance.- Specified by:
getInverse
in interfaceStaticTransform
- Returns:
- inverse transform of the instance
-
getDate
public AbsoluteDate getDate()
Get the date.- Specified by:
getDate
in interfaceTimeStamped
- Returns:
- date attached to the object
-
-