From 9fb33a91aa22fbce6d0b74529e07af9f7781b916 Mon Sep 17 00:00:00 2001 From: Thales Lima Oliveira Date: Mon, 8 May 2017 21:43:17 -0300 Subject: Secondary branch, TF and limiter solution much work, such results --- Project/Limiter.h | 1 + 1 file changed, 1 insertion(+) (limited to 'Project/Limiter.h') diff --git a/Project/Limiter.h b/Project/Limiter.h index 5f4e55b..b51d8cb 100644 --- a/Project/Limiter.h +++ b/Project/Limiter.h @@ -16,6 +16,7 @@ public: virtual bool Intersects(wxRect2DDouble rect) const { return m_rect.Intersects(rect); } virtual bool ShowForm(wxWindow* parent, Element* element); virtual void Rotate(bool clockwise = true); + virtual bool Solve(double input); virtual void UpdatePoints(); -- cgit From d44c3a76943c90cfcbf336961d9ba3516a1c80dc Mon Sep 17 00:00:00 2001 From: Thales Lima Oliveira Date: Sat, 13 May 2017 16:13:12 -0300 Subject: Several bugs fixed, ready to pull --- Project/Limiter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Project/Limiter.h') diff --git a/Project/Limiter.h b/Project/Limiter.h index b51d8cb..1585a3c 100644 --- a/Project/Limiter.h +++ b/Project/Limiter.h @@ -16,7 +16,7 @@ public: virtual bool Intersects(wxRect2DDouble rect) const { return m_rect.Intersects(rect); } virtual bool ShowForm(wxWindow* parent, Element* element); virtual void Rotate(bool clockwise = true); - virtual bool Solve(double input); + virtual bool Solve(double input, double timeStep); virtual void UpdatePoints(); -- cgit