Package org.orekit.time
Class PythonTimeVectorFunction
- java.lang.Object
-
- org.orekit.time.PythonTimeVectorFunction
-
- All Implemented Interfaces:
TimeVectorFunction
public class PythonTimeVectorFunction extends Object implements TimeVectorFunction
-
-
Constructor Summary
Constructors Constructor Description PythonTimeVectorFunction()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
finalize()
Part of JCC Python interface to objectvoid
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 objectdouble[]
value(AbsoluteDate date)
Compute a function of time.<T extends CalculusFieldElement<T>>
T[]value(FieldAbsoluteDate<T> date)
Compute a function of time.
-
-
-
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
-
value
public double[] value(AbsoluteDate date)
Compute a function of time.- Specified by:
value
in interfaceTimeVectorFunction
- Parameters:
date
- date- Returns:
- value of the function
-
value
public <T extends CalculusFieldElement<T>> T[] value(FieldAbsoluteDate<T> date)
Compute a function of time.- Specified by:
value
in interfaceTimeVectorFunction
- Type Parameters:
T
- type of the field elements- Parameters:
date
- date- Returns:
- value of the function
-
-