diff options
author | Thales1330 <thaleslima.ufu@gmail.com> | 2016-09-02 18:08:53 -0300 |
---|---|---|
committer | Thales1330 <thaleslima.ufu@gmail.com> | 2016-09-02 18:08:53 -0300 |
commit | bd3f70a62f8c2868e20f094a0ad7dd8c977ab853 (patch) | |
tree | 7b3cc0de1debe3130f5c95b73052aee3f5d52a43 /Project/InductionMotor.cpp | |
parent | b06d4c3d76cca3ed8a54dae1d978030d687233b2 (diff) | |
download | PSP.git-bd3f70a62f8c2868e20f094a0ad7dd8c977ab853.tar.gz PSP.git-bd3f70a62f8c2868e20f094a0ad7dd8c977ab853.tar.xz PSP.git-bd3f70a62f8c2868e20f094a0ad7dd8c977ab853.zip |
Motor under implementation
Diffstat (limited to 'Project/InductionMotor.cpp')
-rw-r--r-- | Project/InductionMotor.cpp | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/Project/InductionMotor.cpp b/Project/InductionMotor.cpp new file mode 100644 index 0000000..2799026 --- /dev/null +++ b/Project/InductionMotor.cpp @@ -0,0 +1,61 @@ +#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() +{ +} |