diff options
Diffstat (limited to 'Project/Exponential.h')
-rw-r--r-- | Project/Exponential.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Project/Exponential.h b/Project/Exponential.h index c8117c0..d1744f5 100644 --- a/Project/Exponential.h +++ b/Project/Exponential.h @@ -3,6 +3,8 @@ #include "ControlElement.h" +class ExponentialForm; + class Exponential : public ControlElement { public: @@ -16,6 +18,13 @@ public: virtual void Rotate(bool clockwise = true); virtual void UpdatePoints(); + + virtual double GetValues(double& aValue, double &bValue); + virtual void SetValues(double aValue, double bValue); + +protected: + double m_aValue = 0.001; + double m_bValue = 5.0; }; |