diff options
author | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2016-09-03 01:10:18 -0300 |
---|---|---|
committer | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2016-09-03 01:10:18 -0300 |
commit | 077270f0294d236c6047d850703c5d011cb4b711 (patch) | |
tree | c655594e525222104c49564f097734537ccc322b /Project/InductionMotor.cpp | |
parent | bd3f70a62f8c2868e20f094a0ad7dd8c977ab853 (diff) | |
download | PSP.git-077270f0294d236c6047d850703c5d011cb4b711.tar.gz PSP.git-077270f0294d236c6047d850703c5d011cb4b711.tar.xz PSP.git-077270f0294d236c6047d850703c5d011cb4b711.zip |
Motor implementation done, elements classes reorganized
Diffstat (limited to 'Project/InductionMotor.cpp')
-rw-r--r-- | Project/InductionMotor.cpp | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/Project/InductionMotor.cpp b/Project/InductionMotor.cpp deleted file mode 100644 index 2799026..0000000 --- a/Project/InductionMotor.cpp +++ /dev/null @@ -1,61 +0,0 @@ -#include "InductionMotor.h" - -InductionMotor::InductionMotor() : Element() -{ -} - -InductionMotor::~InductionMotor() -{ -} - -bool InductionMotor::AddParent(Element* parent, wxPoint2DDouble position) -{ -} - -void InductionMotor::Draw(wxPoint2DDouble translation, double scale) const -{ -} - -void InductionMotor::Move(wxPoint2DDouble position) -{ -} - -void InductionMotor::MoveNode(Element* element, wxPoint2DDouble position) -{ -} - -void InductionMotor::StartMove(wxPoint2DDouble position) -{ -} - -void InductionMotor::RotateNode(Element* parent) -{ -} - -void InductionMotor::RemoveParent(Element* parent) -{ -} - -bool InductionMotor::NodeContains(wxPoint2DDouble position) -{ -} - -bool InductionMotor::SetNodeParent(Element* parent) -{ -} - -void InductionMotor::UpdateNodes() -{ -} - -bool InductionMotor::GetContextMenu(wxMenu& menu) -{ -} - -void InductionMotor::Rotate() -{ -} - -void InductionMotor::UpdateSwitchesPosition() -{ -} |