From afb0e6e08d3911b7387799f5c465fd59ca26a484 Mon Sep 17 00:00:00 2001 From: Thales Lima Oliveira Date: Sat, 1 Apr 2017 17:43:54 -0300 Subject: Constant implemented Missing: gain and io --- Project/Exponential.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'Project/Exponential.h') 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; }; -- cgit