Rotate support for pads.

This commit is contained in:
Maciej Suminski 2014-07-09 13:50:27 +02:00
parent 583de985c7
commit 8e90a6167b
2 changed files with 8 additions and 0 deletions

View File

@ -829,6 +829,13 @@ int D_PAD::Compare( const D_PAD* padref, const D_PAD* padcmp )
} }
void D_PAD::Rotate( const wxPoint& aRotCentre, double aAngle )
{
RotatePoint( &m_Pos, aRotCentre, aAngle );
m_Orient += aAngle;
}
wxString D_PAD::ShowPadShape() const wxString D_PAD::ShowPadShape() const
{ {
switch( GetShape() ) switch( GetShape() )

View File

@ -400,6 +400,7 @@ public:
SetLocalCoord(); SetLocalCoord();
} }
void Rotate( const wxPoint& aRotCentre, double aAngle );
wxString GetSelectMenuText() const; wxString GetSelectMenuText() const;