Package com.dkt.graphics.extras.formula
Class ParametricCalculable
java.lang.Object
com.dkt.graphics.extras.formula.AbstractCalculable
com.dkt.graphics.extras.formula.ParametricCalculable
This class is used within
GFormula
representing
ℝ → ℝ
2 functions- Author:
- Federico Vera <[email protected]>
-
Constructor Summary
-
Method Summary
Methods inherited from class com.dkt.graphics.extras.formula.AbstractCalculable
endPoint, endPoint, getName, getScale, scaleX, scaleY, setName, setScale, setScaleX, setScaleY, startPoint, startPoint, step, step
-
Constructor Details
-
ParametricCalculable
public ParametricCalculable()
-
-
Method Details
-
x
public abstract double x(double t) This method should return the x(t) value of the equation- Parameters:
t
- parameter- Returns:
- x(t)
-
y
public abstract double y(double t) This method should return the y(t) value of the equation- Parameters:
t
- parameter- Returns:
- y(t)
-