2012-05-03 18:37:56 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2004 Jean-Pierre Charras, jaen-pierre.charras@gipsa-lab.inpg.com
|
2015-02-28 20:50:35 +00:00
|
|
|
* Copyright (C) 2004-2015 KiCad Developers, see change_log.txt for contributors.
|
2012-05-03 18:37:56 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file lib_arc.cpp
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <fctsys.h>
|
|
|
|
#include <gr_basic.h>
|
|
|
|
#include <macros.h>
|
|
|
|
#include <class_drawpanel.h>
|
|
|
|
#include <plot_common.h>
|
|
|
|
#include <trigo.h>
|
|
|
|
#include <wxstruct.h>
|
|
|
|
#include <richio.h>
|
|
|
|
#include <base_units.h>
|
2013-01-12 17:32:24 +00:00
|
|
|
#include <msgpanel.h>
|
2012-05-03 18:37:56 +00:00
|
|
|
|
|
|
|
#include <general.h>
|
|
|
|
#include <lib_arc.h>
|
|
|
|
#include <transform.h>
|
|
|
|
|
2012-12-27 16:42:41 +00:00
|
|
|
// Helper function
|
2013-05-04 11:57:09 +00:00
|
|
|
static inline wxPoint twoPointVector( const wxPoint &startPoint, const wxPoint &endPoint )
|
2012-12-27 16:42:41 +00:00
|
|
|
{
|
|
|
|
return endPoint - startPoint;
|
|
|
|
}
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
|
|
|
|
//! @brief Given three points A B C, compute the circumcenter of the resulting triangle
|
|
|
|
//! reference: http://en.wikipedia.org/wiki/Circumscribed_circle
|
|
|
|
//! Coordinates of circumcenter in Cartesian coordinates
|
|
|
|
static wxPoint calcCenter( const wxPoint& A, const wxPoint& B, const wxPoint& C )
|
|
|
|
{
|
|
|
|
double circumCenterX, circumCenterY;
|
|
|
|
double Ax = (double) A.x;
|
|
|
|
double Ay = (double) A.y;
|
|
|
|
double Bx = (double) B.x;
|
|
|
|
double By = (double) B.y;
|
|
|
|
double Cx = (double) C.x;
|
|
|
|
double Cy = (double) C.y;
|
|
|
|
|
|
|
|
wxPoint circumCenter;
|
|
|
|
|
|
|
|
double D = 2.0 * ( Ax * ( By - Cy ) + Bx * ( Cy - Ay ) + Cx * ( Ay - By ) );
|
|
|
|
|
|
|
|
// prevent division / 0
|
|
|
|
if( fabs( D ) < 1e-7 )
|
|
|
|
D = 1e-7;
|
|
|
|
|
|
|
|
circumCenterX = ( (Ay * Ay + Ax * Ax) * (By - Cy) +
|
|
|
|
(By * By + Bx * Bx) * (Cy - Ay) +
|
|
|
|
(Cy * Cy + Cx * Cx) * (Ay - By) ) / D;
|
|
|
|
|
|
|
|
circumCenterY = ( (Ay * Ay + Ax * Ax) * (Cx - Bx) +
|
|
|
|
(By * By + Bx * Bx) * (Ax - Cx) +
|
|
|
|
(Cy * Cy + Cx * Cx) * (Bx - Ax) ) / D;
|
|
|
|
|
|
|
|
circumCenter.x = (int) circumCenterX;
|
|
|
|
circumCenter.y = (int) circumCenterY;
|
|
|
|
|
|
|
|
return circumCenter;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
Modular KiCad Blueprint Milestone B), major portions:
*) When kicad.exe closes a project, close any open KIFACEs so that they cannot
get disassociated from their true PROJECT.
*) Allow loading eeschema library editor from kicad.exe
*) Allow loading pcbnew library editor from kicad.exe
*) Rename LIB_COMPONENT to LIB_PART.
*) Add class PART_LIBS, and PART_LIB.
*) Make PART_LIBS non-global, i.e. PROJECT specific.
*) Implement "data on demand" for PART_LIBS
*) Implement "data on demand" for schematic SEARCH_STACK.
*) Use RSTRINGs to retain eeschema editor's notion of last library and part being edited.
*) Get rid of library search on every SCH_COMPONENT::Draw() call, instead use
a weak pointer.
*) Remove all chdir() calls so projects don't need to be CWD.
*) Romove APPEND support from OpenProjectFiles().
*) Make OpenProjectFiles() robust, even for creating new projects.
*) Load EESCHEMA colors in the KIWAY::OnKiwayStart() rather in window open,
and save them in the .eeschema config file, not in the project file.
*) Fix bug with wxDir() while accessing protected dirs in kicad.exe
*) Consolidate template copying into PROJECT class, not in kicad.exe source.
*) Generally untangle eeschema, making its libraries not global but rather
held in the PROJECT.
2014-08-13 20:28:54 +00:00
|
|
|
LIB_ARC::LIB_ARC( LIB_PART* aParent ) : LIB_ITEM( LIB_ARC_T, aParent )
|
2012-05-03 18:37:56 +00:00
|
|
|
{
|
|
|
|
m_Radius = 0;
|
|
|
|
m_t1 = 0;
|
|
|
|
m_t2 = 0;
|
|
|
|
m_Width = 0;
|
|
|
|
m_Fill = NO_FILL;
|
|
|
|
m_isFillable = true;
|
|
|
|
m_typeName = _( "Arc" );
|
|
|
|
m_editState = 0;
|
|
|
|
m_lastEditState = 0;
|
2015-02-28 20:50:35 +00:00
|
|
|
m_editCenterDistance = 0.0;
|
|
|
|
m_editSelectPoint = ARC_STATUS_START;
|
|
|
|
m_editDirection = 0;
|
2012-05-03 18:37:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool LIB_ARC::Save( OUTPUTFORMATTER& aFormatter )
|
|
|
|
{
|
|
|
|
int x1 = m_t1;
|
|
|
|
|
|
|
|
if( x1 > 1800 )
|
|
|
|
x1 -= 3600;
|
|
|
|
|
|
|
|
int x2 = m_t2;
|
|
|
|
|
|
|
|
if( x2 > 1800 )
|
|
|
|
x2 -= 3600;
|
|
|
|
|
|
|
|
aFormatter.Print( 0, "A %d %d %d %d %d %d %d %d %c %d %d %d %d\n",
|
|
|
|
m_Pos.x, m_Pos.y, m_Radius, x1, x2, m_Unit, m_Convert, m_Width,
|
|
|
|
fill_tab[m_Fill], m_ArcStart.x, m_ArcStart.y, m_ArcEnd.x,
|
|
|
|
m_ArcEnd.y );
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool LIB_ARC::Load( LINE_READER& aLineReader, wxString& aErrorMsg )
|
|
|
|
{
|
|
|
|
int startx, starty, endx, endy, cnt;
|
2014-08-12 14:39:44 +00:00
|
|
|
char tmp[256] = "";
|
2012-05-03 18:37:56 +00:00
|
|
|
char* line = (char*) aLineReader;
|
|
|
|
|
2014-08-12 14:39:44 +00:00
|
|
|
cnt = sscanf( line + 2, "%d %d %d %d %d %d %d %d %255s %d %d %d %d",
|
2012-05-03 18:37:56 +00:00
|
|
|
&m_Pos.x, &m_Pos.y, &m_Radius, &m_t1, &m_t2, &m_Unit,
|
|
|
|
&m_Convert, &m_Width, tmp, &startx, &starty, &endx, &endy );
|
|
|
|
if( cnt < 8 )
|
|
|
|
{
|
2013-04-09 17:49:01 +00:00
|
|
|
aErrorMsg.Printf( _( "Arc only had %d parameters of the required 8" ), cnt );
|
2012-05-03 18:37:56 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( tmp[0] == 'F' )
|
|
|
|
m_Fill = FILLED_SHAPE;
|
|
|
|
|
|
|
|
if( tmp[0] == 'f' )
|
|
|
|
m_Fill = FILLED_WITH_BG_BODYCOLOR;
|
|
|
|
|
|
|
|
NORMALIZE_ANGLE_POS( m_t1 );
|
|
|
|
NORMALIZE_ANGLE_POS( m_t2 );
|
|
|
|
|
|
|
|
// Actual Coordinates of arc ends are read from file
|
|
|
|
if( cnt >= 13 )
|
|
|
|
{
|
|
|
|
m_ArcStart.x = startx;
|
|
|
|
m_ArcStart.y = starty;
|
|
|
|
m_ArcEnd.x = endx;
|
|
|
|
m_ArcEnd.y = endy;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Actual Coordinates of arc ends are not read from file
|
|
|
|
// (old library), calculate them
|
|
|
|
m_ArcStart.x = m_Radius;
|
|
|
|
m_ArcStart.y = 0;
|
|
|
|
m_ArcEnd.x = m_Radius;
|
|
|
|
m_ArcEnd.y = 0;
|
|
|
|
RotatePoint( &m_ArcStart.x, &m_ArcStart.y, -m_t1 );
|
|
|
|
m_ArcStart.x += m_Pos.x;
|
|
|
|
m_ArcStart.y += m_Pos.y;
|
|
|
|
RotatePoint( &m_ArcEnd.x, &m_ArcEnd.y, -m_t2 );
|
|
|
|
m_ArcEnd.x += m_Pos.x;
|
|
|
|
m_ArcEnd.y += m_Pos.y;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-05-04 17:08:36 +00:00
|
|
|
bool LIB_ARC::HitTest( const wxPoint& aRefPoint ) const
|
2012-05-03 18:37:56 +00:00
|
|
|
{
|
|
|
|
int mindist = GetPenSize() / 2;
|
|
|
|
|
|
|
|
// Have a minimal tolerance for hit test
|
|
|
|
if( mindist < MINIMUM_SELECTION_DISTANCE )
|
|
|
|
mindist = MINIMUM_SELECTION_DISTANCE;
|
|
|
|
|
|
|
|
return HitTest( aRefPoint, mindist, DefaultTransform );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2014-05-04 17:08:36 +00:00
|
|
|
bool LIB_ARC::HitTest( const wxPoint &aPosition, int aThreshold, const TRANSFORM& aTransform ) const
|
2012-05-03 18:37:56 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
if( aThreshold < 0 )
|
|
|
|
aThreshold = GetPenSize() / 2;
|
|
|
|
|
|
|
|
// TODO: use aTransMat to calculates parameters
|
|
|
|
wxPoint relativePosition = aPosition;
|
|
|
|
|
2015-06-26 13:41:56 +00:00
|
|
|
relativePosition.y = -relativePosition.y; // reverse Y axis
|
2012-05-03 18:37:56 +00:00
|
|
|
|
2013-05-04 11:57:09 +00:00
|
|
|
int distance = KiROUND( GetLineLength( m_Pos, relativePosition ) );
|
2012-05-03 18:37:56 +00:00
|
|
|
|
|
|
|
if( abs( distance - m_Radius ) > aThreshold )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// We are on the circle, ensure we are only on the arc, i.e. between
|
|
|
|
// m_ArcStart and m_ArcEnd
|
|
|
|
|
2012-12-27 16:42:41 +00:00
|
|
|
wxPoint startEndVector = twoPointVector( m_ArcStart, m_ArcEnd);
|
|
|
|
wxPoint startRelativePositionVector = twoPointVector( m_ArcStart, relativePosition );
|
2012-05-03 18:37:56 +00:00
|
|
|
|
2012-12-27 16:42:41 +00:00
|
|
|
wxPoint centerStartVector = twoPointVector( m_Pos, m_ArcStart );
|
|
|
|
wxPoint centerEndVector = twoPointVector( m_Pos, m_ArcEnd );
|
|
|
|
wxPoint centerRelativePositionVector = twoPointVector( m_Pos, relativePosition );
|
2012-05-03 18:37:56 +00:00
|
|
|
|
|
|
|
// Compute the cross product to check if the point is in the sector
|
2012-12-27 16:42:41 +00:00
|
|
|
double crossProductStart = CrossProduct( centerStartVector, centerRelativePositionVector );
|
|
|
|
double crossProductEnd = CrossProduct( centerEndVector, centerRelativePositionVector );
|
2012-05-03 18:37:56 +00:00
|
|
|
|
|
|
|
// The cross products need to be exchanged, depending on which side the center point
|
|
|
|
// relative to the start point to end point vector lies
|
|
|
|
if( CrossProduct( startEndVector, startRelativePositionVector ) < 0 )
|
|
|
|
{
|
2015-06-26 13:41:56 +00:00
|
|
|
std::swap( crossProductStart, crossProductEnd );
|
2012-05-03 18:37:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// When the cross products have a different sign, the point lies in sector
|
|
|
|
// also check, if the reference is near start or end point
|
|
|
|
return HitTestPoints( m_ArcStart, relativePosition, MINIMUM_SELECTION_DISTANCE ) ||
|
|
|
|
HitTestPoints( m_ArcEnd, relativePosition, MINIMUM_SELECTION_DISTANCE ) ||
|
|
|
|
( crossProductStart <= 0 && crossProductEnd >= 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
EDA_ITEM* LIB_ARC::Clone() const
|
|
|
|
{
|
|
|
|
return new LIB_ARC( *this );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int LIB_ARC::compare( const LIB_ITEM& aOther ) const
|
|
|
|
{
|
|
|
|
wxASSERT( aOther.Type() == LIB_ARC_T );
|
|
|
|
|
|
|
|
const LIB_ARC* tmp = ( LIB_ARC* ) &aOther;
|
|
|
|
|
|
|
|
if( m_Pos.x != tmp->m_Pos.x )
|
|
|
|
return m_Pos.x - tmp->m_Pos.x;
|
|
|
|
|
|
|
|
if( m_Pos.y != tmp->m_Pos.y )
|
|
|
|
return m_Pos.y - tmp->m_Pos.y;
|
|
|
|
|
|
|
|
if( m_t1 != tmp->m_t1 )
|
|
|
|
return m_t1 - tmp->m_t1;
|
|
|
|
|
|
|
|
if( m_t2 != tmp->m_t2 )
|
|
|
|
return m_t2 - tmp->m_t2;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void LIB_ARC::SetOffset( const wxPoint& aOffset )
|
|
|
|
{
|
|
|
|
m_Pos += aOffset;
|
|
|
|
m_ArcStart += aOffset;
|
|
|
|
m_ArcEnd += aOffset;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool LIB_ARC::Inside( EDA_RECT& aRect ) const
|
|
|
|
{
|
|
|
|
return aRect.Contains( m_ArcStart.x, -m_ArcStart.y )
|
|
|
|
|| aRect.Contains( m_ArcEnd.x, -m_ArcEnd.y );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void LIB_ARC::Move( const wxPoint& aPosition )
|
|
|
|
{
|
|
|
|
wxPoint offset = aPosition - m_Pos;
|
|
|
|
m_Pos = aPosition;
|
|
|
|
m_ArcStart += offset;
|
|
|
|
m_ArcEnd += offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void LIB_ARC::MirrorHorizontal( const wxPoint& aCenter )
|
|
|
|
{
|
|
|
|
m_Pos.x -= aCenter.x;
|
|
|
|
m_Pos.x *= -1;
|
|
|
|
m_Pos.x += aCenter.x;
|
|
|
|
m_ArcStart.x -= aCenter.x;
|
|
|
|
m_ArcStart.x *= -1;
|
|
|
|
m_ArcStart.x += aCenter.x;
|
|
|
|
m_ArcEnd.x -= aCenter.x;
|
|
|
|
m_ArcEnd.x *= -1;
|
|
|
|
m_ArcEnd.x += aCenter.x;
|
2015-06-26 13:41:56 +00:00
|
|
|
std::swap( m_ArcStart, m_ArcEnd );
|
|
|
|
std::swap( m_t1, m_t2 );
|
2013-02-10 18:02:45 +00:00
|
|
|
m_t1 = 1800 - m_t1;
|
|
|
|
m_t2 = 1800 - m_t2;
|
|
|
|
if( m_t1 > 3600 || m_t2 > 3600 )
|
|
|
|
{
|
|
|
|
m_t1 -= 3600;
|
|
|
|
m_t2 -= 3600;
|
|
|
|
}
|
|
|
|
else if( m_t1 < -3600 || m_t2 < -3600 )
|
|
|
|
{
|
|
|
|
m_t1 += 3600;
|
|
|
|
m_t2 += 3600;
|
|
|
|
}
|
2012-05-03 18:37:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void LIB_ARC::MirrorVertical( const wxPoint& aCenter )
|
|
|
|
{
|
|
|
|
m_Pos.y -= aCenter.y;
|
|
|
|
m_Pos.y *= -1;
|
|
|
|
m_Pos.y += aCenter.y;
|
|
|
|
m_ArcStart.y -= aCenter.y;
|
|
|
|
m_ArcStart.y *= -1;
|
|
|
|
m_ArcStart.y += aCenter.y;
|
|
|
|
m_ArcEnd.y -= aCenter.y;
|
|
|
|
m_ArcEnd.y *= -1;
|
|
|
|
m_ArcEnd.y += aCenter.y;
|
2015-06-26 13:41:56 +00:00
|
|
|
std::swap( m_ArcStart, m_ArcEnd );
|
|
|
|
std::swap( m_t1, m_t2 );
|
2013-02-10 18:02:45 +00:00
|
|
|
m_t1 = - m_t1;
|
|
|
|
m_t2 = - m_t2;
|
|
|
|
if( m_t1 > 3600 || m_t2 > 3600 )
|
|
|
|
{
|
|
|
|
m_t1 -= 3600;
|
|
|
|
m_t2 -= 3600;
|
|
|
|
}
|
|
|
|
else if( m_t1 < -3600 || m_t2 < -3600 )
|
|
|
|
{
|
|
|
|
m_t1 += 3600;
|
|
|
|
m_t2 += 3600;
|
|
|
|
}
|
2012-05-03 18:37:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void LIB_ARC::Rotate( const wxPoint& aCenter, bool aRotateCCW )
|
|
|
|
{
|
|
|
|
int rot_angle = aRotateCCW ? -900 : 900;
|
|
|
|
RotatePoint( &m_Pos, aCenter, rot_angle );
|
|
|
|
RotatePoint( &m_ArcStart, aCenter, rot_angle );
|
|
|
|
RotatePoint( &m_ArcEnd, aCenter, rot_angle );
|
2013-02-10 18:02:45 +00:00
|
|
|
m_t1 -= rot_angle;
|
|
|
|
m_t2 -= rot_angle;
|
|
|
|
if( m_t1 > 3600 || m_t2 > 3600 )
|
|
|
|
{
|
|
|
|
m_t1 -= 3600;
|
|
|
|
m_t2 -= 3600;
|
|
|
|
}
|
|
|
|
else if( m_t1 < -3600 || m_t2 < -3600 )
|
|
|
|
{
|
|
|
|
m_t1 += 3600;
|
|
|
|
m_t2 += 3600;
|
|
|
|
}
|
2012-05-03 18:37:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void LIB_ARC::Plot( PLOTTER* aPlotter, const wxPoint& aOffset, bool aFill,
|
|
|
|
const TRANSFORM& aTransform )
|
|
|
|
{
|
|
|
|
wxASSERT( aPlotter != NULL );
|
|
|
|
|
|
|
|
int t1 = m_t1;
|
|
|
|
int t2 = m_t2;
|
|
|
|
wxPoint pos = aTransform.TransformCoordinate( m_Pos ) + aOffset;
|
|
|
|
|
|
|
|
aTransform.MapAngles( &t1, &t2 );
|
|
|
|
|
|
|
|
if( aFill && m_Fill == FILLED_WITH_BG_BODYCOLOR )
|
|
|
|
{
|
2013-04-04 21:35:01 +00:00
|
|
|
aPlotter->SetColor( GetLayerColor( LAYER_DEVICE_BACKGROUND ) );
|
2012-05-03 18:37:56 +00:00
|
|
|
aPlotter->Arc( pos, -t2, -t1, m_Radius, FILLED_SHAPE, 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
bool already_filled = m_Fill == FILLED_WITH_BG_BODYCOLOR;
|
2013-04-04 21:35:01 +00:00
|
|
|
aPlotter->SetColor( GetLayerColor( LAYER_DEVICE ) );
|
2012-05-03 18:37:56 +00:00
|
|
|
aPlotter->Arc( pos, -t2, -t1, m_Radius, already_filled ? NO_FILL : m_Fill, GetPenSize() );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int LIB_ARC::GetPenSize() const
|
|
|
|
{
|
2012-09-28 17:47:41 +00:00
|
|
|
return ( m_Width == 0 ) ? GetDefaultLineThickness() : m_Width;
|
2012-05-03 18:37:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-09-02 12:06:47 +00:00
|
|
|
void LIB_ARC::drawEditGraphics( EDA_RECT* aClipBox, wxDC* aDC, EDA_COLOR_T aColor )
|
2012-05-03 18:37:56 +00:00
|
|
|
{
|
|
|
|
// The edit indicators only get drawn when a new arc is being drawn.
|
|
|
|
if( !IsNew() )
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Use the last edit state so when the drawing switches from the end mode to the center
|
|
|
|
// point mode, the last line between the center points gets erased.
|
|
|
|
if( m_lastEditState == 1 )
|
|
|
|
{
|
|
|
|
GRLine( aClipBox, aDC, m_ArcStart.x, -m_ArcStart.y, m_ArcEnd.x, -m_ArcEnd.y, 0, aColor );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
GRDashedLine( aClipBox, aDC, m_ArcStart.x, -m_ArcStart.y, m_Pos.x, -m_Pos.y, 0, aColor );
|
|
|
|
GRDashedLine( aClipBox, aDC, m_ArcEnd.x, -m_ArcEnd.y, m_Pos.x, -m_Pos.y, 0, aColor );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void LIB_ARC::drawGraphic( EDA_DRAW_PANEL* aPanel, wxDC* aDC, const wxPoint& aOffset,
|
2012-09-02 12:06:47 +00:00
|
|
|
EDA_COLOR_T aColor, GR_DRAWMODE aDrawMode, void* aData,
|
|
|
|
const TRANSFORM& aTransform )
|
2012-05-03 18:37:56 +00:00
|
|
|
{
|
|
|
|
// Don't draw the arc until the end point is selected. Only the edit indicators
|
|
|
|
// get drawn at this time.
|
|
|
|
if( IsNew() && m_lastEditState == 1 )
|
|
|
|
return;
|
|
|
|
|
|
|
|
wxPoint pos1, pos2, posc;
|
2013-04-04 21:35:01 +00:00
|
|
|
EDA_COLOR_T color = GetLayerColor( LAYER_DEVICE );
|
2012-05-03 18:37:56 +00:00
|
|
|
|
|
|
|
if( aColor < 0 ) // Used normal color or selected color
|
|
|
|
{
|
|
|
|
if( IsSelected() )
|
2012-09-28 17:47:41 +00:00
|
|
|
color = GetItemSelectedColor();
|
2012-05-03 18:37:56 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
color = aColor;
|
|
|
|
}
|
|
|
|
|
|
|
|
pos1 = aTransform.TransformCoordinate( m_ArcEnd ) + aOffset;
|
|
|
|
pos2 = aTransform.TransformCoordinate( m_ArcStart ) + aOffset;
|
|
|
|
posc = aTransform.TransformCoordinate( m_Pos ) + aOffset;
|
|
|
|
int pt1 = m_t1;
|
|
|
|
int pt2 = m_t2;
|
|
|
|
bool swap = aTransform.MapAngles( &pt1, &pt2 );
|
|
|
|
|
|
|
|
if( swap )
|
|
|
|
{
|
2015-06-26 13:41:56 +00:00
|
|
|
std::swap( pos1.x, pos2.x );
|
|
|
|
std::swap( pos1.y, pos2.y );
|
2012-05-03 18:37:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GRSetDrawMode( aDC, aDrawMode );
|
|
|
|
|
|
|
|
FILL_T fill = aData ? NO_FILL : m_Fill;
|
|
|
|
|
|
|
|
if( aColor >= 0 )
|
|
|
|
fill = NO_FILL;
|
|
|
|
|
2014-02-18 21:41:27 +00:00
|
|
|
EDA_RECT* const clipbox = aPanel? aPanel->GetClipBox() : NULL;
|
|
|
|
|
2012-05-03 18:37:56 +00:00
|
|
|
if( fill == FILLED_WITH_BG_BODYCOLOR )
|
|
|
|
{
|
2014-02-18 21:41:27 +00:00
|
|
|
GRFilledArc( clipbox, aDC, posc.x, posc.y, pt1, pt2,
|
2012-05-03 18:37:56 +00:00
|
|
|
m_Radius, GetPenSize( ),
|
2013-04-04 21:35:01 +00:00
|
|
|
(m_Flags & IS_MOVED) ? color : GetLayerColor( LAYER_DEVICE_BACKGROUND ),
|
|
|
|
GetLayerColor( LAYER_DEVICE_BACKGROUND ) );
|
2012-05-03 18:37:56 +00:00
|
|
|
}
|
|
|
|
else if( fill == FILLED_SHAPE && !aData )
|
|
|
|
{
|
2014-02-18 21:41:27 +00:00
|
|
|
GRFilledArc( clipbox, aDC, posc.x, posc.y, pt1, pt2, m_Radius,
|
2012-05-03 18:37:56 +00:00
|
|
|
color, color );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
|
|
|
|
#ifdef DRAW_ARC_WITH_ANGLE
|
|
|
|
|
2014-02-18 21:41:27 +00:00
|
|
|
GRArc( clipbox, aDC, posc.x, posc.y, pt1, pt2, m_Radius,
|
2012-05-03 18:37:56 +00:00
|
|
|
GetPenSize(), color );
|
|
|
|
#else
|
|
|
|
|
2014-02-18 21:41:27 +00:00
|
|
|
GRArc1( clipbox, aDC, pos1.x, pos1.y, pos2.x, pos2.y,
|
2012-05-03 18:37:56 +00:00
|
|
|
posc.x, posc.y, GetPenSize(), color );
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set to one (1) to draw bounding box around arc to validate bounding box
|
|
|
|
* calculation. */
|
|
|
|
#if 0
|
|
|
|
EDA_RECT bBox = GetBoundingBox();
|
2015-06-18 14:56:08 +00:00
|
|
|
bBox.RevertYAxis();
|
|
|
|
bBox = aTransform.TransformCoordinate( bBox );
|
|
|
|
bBox.Move( aOffset );
|
|
|
|
GRRect( clipbox, aDC, bBox, 0, LIGHTMAGENTA );
|
2012-05-03 18:37:56 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-11-24 17:48:14 +00:00
|
|
|
const EDA_RECT LIB_ARC::GetBoundingBox() const
|
2012-05-03 18:37:56 +00:00
|
|
|
{
|
|
|
|
int minX, minY, maxX, maxY, angleStart, angleEnd;
|
|
|
|
EDA_RECT rect;
|
|
|
|
wxPoint nullPoint, startPos, endPos, centerPos;
|
|
|
|
wxPoint normStart = m_ArcStart - m_Pos;
|
|
|
|
wxPoint normEnd = m_ArcEnd - m_Pos;
|
|
|
|
|
|
|
|
if( ( normStart == nullPoint ) || ( normEnd == nullPoint ) || ( m_Radius == 0 ) )
|
|
|
|
{
|
|
|
|
wxLogDebug( wxT("Invalid arc drawing definition, center(%d, %d) \
|
|
|
|
start(%d, %d), end(%d, %d), radius %d" ),
|
|
|
|
m_Pos.x, m_Pos.y, m_ArcStart.x, m_ArcStart.y, m_ArcEnd.x,
|
|
|
|
m_ArcEnd.y, m_Radius );
|
|
|
|
return rect;
|
|
|
|
}
|
|
|
|
|
|
|
|
endPos = DefaultTransform.TransformCoordinate( m_ArcEnd );
|
|
|
|
startPos = DefaultTransform.TransformCoordinate( m_ArcStart );
|
|
|
|
centerPos = DefaultTransform.TransformCoordinate( m_Pos );
|
|
|
|
angleStart = m_t1;
|
|
|
|
angleEnd = m_t2;
|
|
|
|
|
|
|
|
if( DefaultTransform.MapAngles( &angleStart, &angleEnd ) )
|
|
|
|
{
|
2015-06-26 13:41:56 +00:00
|
|
|
std::swap( endPos.x, startPos.x );
|
|
|
|
std::swap( endPos.y, startPos.y );
|
2012-05-03 18:37:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Start with the start and end point of the arc. */
|
2012-09-22 11:19:37 +00:00
|
|
|
minX = std::min( startPos.x, endPos.x );
|
|
|
|
minY = std::min( startPos.y, endPos.y );
|
|
|
|
maxX = std::max( startPos.x, endPos.x );
|
|
|
|
maxY = std::max( startPos.y, endPos.y );
|
2012-05-03 18:37:56 +00:00
|
|
|
|
|
|
|
/* Zero degrees is a special case. */
|
|
|
|
if( angleStart == 0 )
|
|
|
|
maxX = centerPos.x + m_Radius;
|
|
|
|
|
|
|
|
/* Arc end angle wrapped passed 360. */
|
|
|
|
if( angleStart > angleEnd )
|
|
|
|
angleEnd += 3600;
|
|
|
|
|
|
|
|
if( angleStart <= 900 && angleEnd >= 900 ) /* 90 deg */
|
|
|
|
maxY = centerPos.y + m_Radius;
|
|
|
|
|
|
|
|
if( angleStart <= 1800 && angleEnd >= 1800 ) /* 180 deg */
|
|
|
|
minX = centerPos.x - m_Radius;
|
|
|
|
|
|
|
|
if( angleStart <= 2700 && angleEnd >= 2700 ) /* 270 deg */
|
|
|
|
minY = centerPos.y - m_Radius;
|
|
|
|
|
|
|
|
if( angleStart <= 3600 && angleEnd >= 3600 ) /* 0 deg */
|
|
|
|
maxX = centerPos.x + m_Radius;
|
|
|
|
|
|
|
|
rect.SetOrigin( minX, minY );
|
|
|
|
rect.SetEnd( maxX, maxY );
|
2015-06-18 14:56:08 +00:00
|
|
|
rect.Inflate( ( GetPenSize()+1 ) / 2 );
|
2012-05-03 18:37:56 +00:00
|
|
|
|
|
|
|
return rect;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-01-12 17:32:24 +00:00
|
|
|
void LIB_ARC::GetMsgPanelInfo( std::vector< MSG_PANEL_ITEM >& aList )
|
2012-05-03 18:37:56 +00:00
|
|
|
{
|
|
|
|
wxString msg;
|
|
|
|
EDA_RECT bBox = GetBoundingBox();
|
|
|
|
|
2013-01-12 17:32:24 +00:00
|
|
|
LIB_ITEM::GetMsgPanelInfo( aList );
|
2012-05-03 18:37:56 +00:00
|
|
|
|
* KIWAY Milestone A): Make major modules into DLL/DSOs.
! The initial testing of this commit should be done using a Debug build so that
all the wxASSERT()s are enabled. Also, be sure and keep enabled the
USE_KIWAY_DLLs option. The tree won't likely build without it. Turning it
off is senseless anyways. If you want stable code, go back to a prior version,
the one tagged with "stable".
* Relocate all functionality out of the wxApp derivative into more finely
targeted purposes:
a) DLL/DSO specific
b) PROJECT specific
c) EXE or process specific
d) configuration file specific data
e) configuration file manipulations functions.
All of this functionality was blended into an extremely large wxApp derivative
and that was incompatible with the desire to support multiple concurrently
loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
An amazing amount of organization come from simply sorting each bit of
functionality into the proper box.
* Switch to wxConfigBase from wxConfig everywhere except instantiation.
* Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
PGM_SINGLE_TOP,
* Remove "Return" prefix on many function names.
* Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
* Fix building boost for use in a DSO on linux.
* Remove some of the assumptions in the CMakeLists.txt files that windows had
to be the host platform when building windows binaries.
* Reduce the number of wxStrings being constructed at program load time via
static construction.
* Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
these functions are useful even when the wxConfigBase comes from another
source, as is the case in the KICAD_MANAGER_FRAME.
* Move the setting of the KIPRJMOD environment variable into class PROJECT,
so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
* Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
its child wxFrames and wxDialogs now have a Kiway() member function which
returns a KIWAY& that that window tree branch is in support of. This is like
wxWindows DNA in that child windows get this member with proper value at time
of construction.
* Anticipate some of the needs for milestones B) and C) and make code
adjustments now in an effort to reduce work in those milestones.
* No testing has been done for python scripting, since milestone C) has that
being largely reworked and re-thought-out.
2014-03-20 00:42:08 +00:00
|
|
|
msg = StringFromValue( g_UserUnit, m_Width, true );
|
2012-05-03 18:37:56 +00:00
|
|
|
|
2014-11-15 19:06:05 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "Line Width" ), msg, BLUE ) );
|
2012-05-03 18:37:56 +00:00
|
|
|
|
|
|
|
msg.Printf( wxT( "(%d, %d, %d, %d)" ), bBox.GetOrigin().x,
|
|
|
|
bBox.GetOrigin().y, bBox.GetEnd().x, bBox.GetEnd().y );
|
|
|
|
|
2014-11-15 19:06:05 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "Bounding Box" ), msg, BROWN ) );
|
2012-05-03 18:37:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
wxString LIB_ARC::GetSelectMenuText() const
|
|
|
|
{
|
|
|
|
return wxString::Format( _( "Arc center (%s, %s), radius %s" ),
|
|
|
|
GetChars( CoordinateToString( m_Pos.x ) ),
|
|
|
|
GetChars( CoordinateToString( m_Pos.y ) ),
|
|
|
|
GetChars( CoordinateToString( m_Radius ) ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-03-28 19:12:46 +00:00
|
|
|
void LIB_ARC::BeginEdit( STATUS_FLAGS aEditMode, const wxPoint aPosition )
|
2012-05-03 18:37:56 +00:00
|
|
|
{
|
|
|
|
wxCHECK_RET( ( aEditMode & ( IS_NEW | IS_MOVED | IS_RESIZED ) ) != 0,
|
|
|
|
wxT( "Invalid edit mode for LIB_ARC object." ) );
|
|
|
|
|
|
|
|
if( aEditMode == IS_NEW )
|
|
|
|
{
|
|
|
|
m_ArcStart = m_ArcEnd = aPosition;
|
|
|
|
m_editState = m_lastEditState = 1;
|
|
|
|
}
|
|
|
|
else if( aEditMode == IS_MOVED )
|
|
|
|
{
|
|
|
|
m_initialPos = m_Pos;
|
|
|
|
m_initialCursorPos = aPosition;
|
|
|
|
SetEraseLastDrawItem();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// The arc center point has to be rotated with while adjusting the
|
|
|
|
// start or end point, determine the side of this point and the distance
|
|
|
|
// from the start / end point
|
|
|
|
wxPoint middlePoint = wxPoint( (m_ArcStart.x + m_ArcEnd.x) / 2,
|
|
|
|
(m_ArcStart.y + m_ArcEnd.y) / 2 );
|
|
|
|
wxPoint centerVector = m_Pos - middlePoint;
|
2012-12-27 16:42:41 +00:00
|
|
|
wxPoint startEndVector = twoPointVector( m_ArcStart, m_ArcEnd );
|
2012-05-03 18:37:56 +00:00
|
|
|
m_editCenterDistance = EuclideanNorm( centerVector );
|
|
|
|
|
|
|
|
// Determine on which side is the center point
|
|
|
|
m_editDirection = CrossProduct( startEndVector, centerVector ) ? 1 : -1;
|
|
|
|
|
|
|
|
// Drag either the start, end point or the outline
|
|
|
|
if( HitTestPoints( m_ArcStart, aPosition, MINIMUM_SELECTION_DISTANCE ) )
|
|
|
|
{
|
2012-07-25 18:46:25 +00:00
|
|
|
m_editSelectPoint = ARC_STATUS_START;
|
2012-05-03 18:37:56 +00:00
|
|
|
}
|
|
|
|
else if( HitTestPoints( m_ArcEnd, aPosition, MINIMUM_SELECTION_DISTANCE ) )
|
|
|
|
{
|
2012-07-25 18:46:25 +00:00
|
|
|
m_editSelectPoint = ARC_STATUS_END;
|
2012-05-03 18:37:56 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2012-07-25 18:46:25 +00:00
|
|
|
m_editSelectPoint = ARC_STATUS_OUTLINE;
|
2012-05-03 18:37:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
m_editState = 0;
|
|
|
|
SetEraseLastDrawItem();
|
|
|
|
}
|
|
|
|
|
|
|
|
m_Flags = aEditMode;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool LIB_ARC::ContinueEdit( const wxPoint aPosition )
|
|
|
|
{
|
|
|
|
wxCHECK_MSG( ( m_Flags & ( IS_NEW | IS_MOVED | IS_RESIZED ) ) != 0, false,
|
|
|
|
wxT( "Bad call to ContinueEdit(). LIB_ARC is not being edited." ) );
|
|
|
|
|
|
|
|
if( m_Flags == IS_NEW )
|
|
|
|
{
|
|
|
|
if( m_editState == 1 ) // Second position yields the arc segment length.
|
|
|
|
{
|
|
|
|
m_ArcEnd = aPosition;
|
|
|
|
m_editState = 2;
|
|
|
|
SetEraseLastDrawItem( false );
|
|
|
|
return true; // Need third position to calculate center point.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void LIB_ARC::EndEdit( const wxPoint& aPosition, bool aAbort )
|
|
|
|
{
|
|
|
|
wxCHECK_RET( ( m_Flags & ( IS_NEW | IS_MOVED | IS_RESIZED ) ) != 0,
|
|
|
|
wxT( "Bad call to EndEdit(). LIB_ARC is not being edited." ) );
|
|
|
|
|
|
|
|
SetEraseLastDrawItem( false );
|
|
|
|
m_lastEditState = 0;
|
|
|
|
m_editState = 0;
|
|
|
|
m_Flags = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void LIB_ARC::calcEdit( const wxPoint& aPosition )
|
|
|
|
{
|
|
|
|
if( m_Flags == IS_RESIZED )
|
|
|
|
{
|
|
|
|
wxPoint newCenterPoint, startPos, endPos;
|
|
|
|
|
|
|
|
// Choose the point of the arc to be adjusted
|
2012-07-25 18:46:25 +00:00
|
|
|
if( m_editSelectPoint == ARC_STATUS_START )
|
2012-05-03 18:37:56 +00:00
|
|
|
{
|
|
|
|
startPos = aPosition;
|
|
|
|
endPos = m_ArcEnd;
|
|
|
|
}
|
2012-07-25 18:46:25 +00:00
|
|
|
else if( m_editSelectPoint == ARC_STATUS_END )
|
2012-05-03 18:37:56 +00:00
|
|
|
{
|
|
|
|
endPos = aPosition;
|
|
|
|
startPos = m_ArcStart;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Use the cursor for adjusting the arc curvature
|
|
|
|
startPos = m_ArcStart;
|
|
|
|
endPos = m_ArcEnd;
|
|
|
|
|
|
|
|
// If the distance is too small, use the old center point
|
|
|
|
// else the new center point is calculated over the three points start/end/cursor
|
|
|
|
if( DistanceLinePoint( startPos, endPos, aPosition ) > MINIMUM_SELECTION_DISTANCE )
|
|
|
|
{
|
|
|
|
newCenterPoint = calcCenter( startPos, aPosition, endPos );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
newCenterPoint = m_Pos;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Determine if the arc angle is larger than 180 degrees -> this happens if both
|
|
|
|
// points (cursor position, center point) lie on the same side of the vector
|
|
|
|
// start-end
|
2012-12-27 16:42:41 +00:00
|
|
|
double crossA = CrossProduct( twoPointVector( startPos, endPos ),
|
|
|
|
twoPointVector( endPos, aPosition ) );
|
|
|
|
double crossB = CrossProduct( twoPointVector( startPos, endPos ),
|
|
|
|
twoPointVector( endPos, newCenterPoint ) );
|
2012-05-03 18:37:56 +00:00
|
|
|
|
|
|
|
if( ( crossA < 0 && crossB < 0 ) || ( crossA >= 0 && crossB >= 0 ) )
|
|
|
|
newCenterPoint = m_Pos;
|
|
|
|
}
|
|
|
|
|
2012-07-25 18:46:25 +00:00
|
|
|
if( m_editSelectPoint == ARC_STATUS_START || m_editSelectPoint == ARC_STATUS_END )
|
2012-05-03 18:37:56 +00:00
|
|
|
{
|
|
|
|
// Compute the new center point when the start/end points are modified
|
|
|
|
wxPoint middlePoint = wxPoint( (startPos.x + endPos.x) / 2,
|
|
|
|
(startPos.y + endPos.y) / 2 );
|
|
|
|
|
2012-12-27 16:42:41 +00:00
|
|
|
wxPoint startEndVector = twoPointVector( startPos, endPos );
|
2012-05-03 18:37:56 +00:00
|
|
|
wxPoint perpendicularVector = wxPoint( -startEndVector.y, startEndVector.x );
|
|
|
|
double lengthPerpendicularVector = EuclideanNorm( perpendicularVector );
|
|
|
|
|
|
|
|
// prevent too large values, division / 0
|
|
|
|
if( lengthPerpendicularVector < 1e-1 )
|
|
|
|
lengthPerpendicularVector = 1e-1;
|
|
|
|
|
|
|
|
perpendicularVector.x = (int) ( (double) perpendicularVector.x *
|
|
|
|
m_editCenterDistance /
|
|
|
|
lengthPerpendicularVector ) * m_editDirection;
|
|
|
|
perpendicularVector.y = (int) ( (double) perpendicularVector.y *
|
|
|
|
m_editCenterDistance /
|
|
|
|
lengthPerpendicularVector ) * m_editDirection;
|
|
|
|
|
|
|
|
newCenterPoint = middlePoint + perpendicularVector;
|
|
|
|
|
|
|
|
m_ArcStart = startPos;
|
|
|
|
m_ArcEnd = endPos;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_Pos = newCenterPoint;
|
|
|
|
calcRadiusAngles();
|
|
|
|
}
|
|
|
|
else if( m_Flags == IS_NEW )
|
|
|
|
{
|
|
|
|
if( m_editState == 1 )
|
|
|
|
{
|
|
|
|
m_ArcEnd = aPosition;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( m_editState != m_lastEditState )
|
|
|
|
m_lastEditState = m_editState;
|
|
|
|
|
|
|
|
// Keep the arc center point up to date. Otherwise, there will be edit graphic
|
|
|
|
// artifacts left behind from the initial draw.
|
|
|
|
int dx, dy;
|
|
|
|
int cX, cY;
|
2013-05-05 07:17:48 +00:00
|
|
|
double angle;
|
2012-05-03 18:37:56 +00:00
|
|
|
|
|
|
|
cX = aPosition.x;
|
|
|
|
cY = aPosition.y;
|
|
|
|
|
|
|
|
dx = m_ArcEnd.x - m_ArcStart.x;
|
|
|
|
dy = m_ArcEnd.y - m_ArcStart.y;
|
|
|
|
cX -= m_ArcStart.x;
|
|
|
|
cY -= m_ArcStart.y;
|
2013-05-01 17:32:36 +00:00
|
|
|
angle = ArcTangente( dy, dx );
|
2012-05-03 18:37:56 +00:00
|
|
|
RotatePoint( &dx, &dy, angle ); /* The segment dx, dy is horizontal
|
|
|
|
* -> Length = dx, dy = 0 */
|
|
|
|
RotatePoint( &cX, &cY, angle );
|
|
|
|
cX = dx / 2; /* cX, cY is on the median segment 0.0 a dx, 0 */
|
|
|
|
|
|
|
|
RotatePoint( &cX, &cY, -angle );
|
|
|
|
cX += m_ArcStart.x;
|
|
|
|
cY += m_ArcStart.y;
|
|
|
|
m_Pos.x = cX;
|
|
|
|
m_Pos.y = cY;
|
|
|
|
calcRadiusAngles();
|
|
|
|
|
|
|
|
SetEraseLastDrawItem();
|
|
|
|
}
|
|
|
|
else if( m_Flags == IS_MOVED )
|
|
|
|
{
|
|
|
|
Move( m_initialPos + aPosition - m_initialCursorPos );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void LIB_ARC::calcRadiusAngles()
|
|
|
|
{
|
2012-12-27 16:42:41 +00:00
|
|
|
wxPoint centerStartVector = twoPointVector( m_Pos, m_ArcStart );
|
|
|
|
wxPoint centerEndVector = twoPointVector( m_Pos, m_ArcEnd );
|
2012-05-03 18:37:56 +00:00
|
|
|
|
|
|
|
m_Radius = KiROUND( EuclideanNorm( centerStartVector ) );
|
|
|
|
|
2013-05-01 17:32:36 +00:00
|
|
|
// Angles in eeschema are still integers
|
|
|
|
m_t1 = KiROUND( ArcTangente( centerStartVector.y, centerStartVector.x ) );
|
|
|
|
m_t2 = KiROUND( ArcTangente( centerEndVector.y, centerEndVector.x ) );
|
2012-05-03 18:37:56 +00:00
|
|
|
|
|
|
|
NORMALIZE_ANGLE_POS( m_t1 );
|
|
|
|
NORMALIZE_ANGLE_POS( m_t2 ); // angles = 0 .. 3600
|
|
|
|
|
|
|
|
// Restrict angle to less than 180 to avoid PBS display mirror Trace because it is
|
|
|
|
// assumed that the arc is less than 180 deg to find orientation after rotate or mirror.
|
|
|
|
if( (m_t2 - m_t1) > 1800 )
|
|
|
|
m_t2 -= 3600;
|
|
|
|
else if( (m_t2 - m_t1) <= -1800 )
|
|
|
|
m_t2 += 3600;
|
|
|
|
|
|
|
|
while( (m_t2 - m_t1) >= 1800 )
|
|
|
|
{
|
|
|
|
m_t2--;
|
|
|
|
m_t1++;
|
|
|
|
}
|
|
|
|
|
|
|
|
while( (m_t1 - m_t2) >= 1800 )
|
|
|
|
{
|
|
|
|
m_t2++;
|
|
|
|
m_t1--;
|
|
|
|
}
|
|
|
|
|
|
|
|
NORMALIZE_ANGLE_POS( m_t1 );
|
|
|
|
|
|
|
|
if( !IsMoving() )
|
|
|
|
NORMALIZE_ANGLE_POS( m_t2 );
|
|
|
|
}
|