diff options
author | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2017-04-01 17:43:54 -0300 |
---|---|---|
committer | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2017-04-01 17:43:54 -0300 |
commit | afb0e6e08d3911b7387799f5c465fd59ca26a484 (patch) | |
tree | 7b9b24d512813837c64d6cc9b2e005cd9791b5e6 /Project/Exponential.h | |
parent | a684d5c9c9dd131060b5a36d7c7844ae197fcfd1 (diff) | |
download | PSP.git-afb0e6e08d3911b7387799f5c465fd59ca26a484.tar.gz PSP.git-afb0e6e08d3911b7387799f5c465fd59ca26a484.tar.xz PSP.git-afb0e6e08d3911b7387799f5c465fd59ca26a484.zip |
Constant implemented
Missing: gain and io
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; }; |