summaryrefslogtreecommitdiffstats
path: root/Project/SyncMotor.cpp
blob: b6d9e9a1a69a21ef408ffb0c7a8dd9a978d27ab7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include "SyncMotor.h"

SyncMotor::SyncMotor() : Machines()
{
}

SyncMotor::~SyncMotor()
{
}

void SyncMotor::DrawSymbol() const
{
	DrawArc(m_position, 12, 30, 330, 10, GL_LINE_STRIP);
}

bool SyncMotor::GetContextMenu(wxMenu& menu)
{
	menu.Append(ID_EDIT_SYNCMOTOR, _("Edit Synchronous Condenser"));
	GeneralMenuItens(menu);
	
	return true;
}