2011-10-31 20:49:48 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
2017-11-16 11:45:53 +00:00
|
|
|
* Copyright (C) 2017 Jean-Pierre Charras, jp.charras at wanadoo.fr
|
2019-04-04 22:49:49 +00:00
|
|
|
* Copyright (C) 2004-2019 KiCad Developers, see AUTHORS.txt for contributors.
|
2011-10-31 20:49:48 +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
|
|
|
|
*/
|
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <fctsys.h>
|
|
|
|
#include <gr_basic.h>
|
|
|
|
#include <macros.h>
|
2018-08-03 12:18:26 +00:00
|
|
|
#include <sch_draw_panel.h>
|
2018-01-28 18:12:26 +00:00
|
|
|
#include <plotter.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <trigo.h>
|
2012-04-13 18:51:24 +00:00
|
|
|
#include <base_units.h>
|
2013-01-12 17:32:24 +00:00
|
|
|
#include <msgpanel.h>
|
2017-02-20 12:20:39 +00:00
|
|
|
#include <bitmaps.h>
|
2012-01-23 04:33:36 +00:00
|
|
|
|
|
|
|
#include <general.h>
|
|
|
|
#include <lib_polyline.h>
|
|
|
|
#include <transform.h>
|
2010-11-27 13:09:18 +00:00
|
|
|
|
|
|
|
|
2019-05-20 10:23:32 +00:00
|
|
|
LIB_POLYLINE::LIB_POLYLINE( LIB_PART* aParent ) :
|
2011-04-27 19:44:32 +00:00
|
|
|
LIB_ITEM( LIB_POLYLINE_T, aParent )
|
2010-11-27 13:09:18 +00:00
|
|
|
{
|
2011-04-09 19:22:37 +00:00
|
|
|
m_Fill = NO_FILL;
|
|
|
|
m_Width = 0;
|
2010-11-27 13:09:18 +00:00
|
|
|
m_isFillable = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-03-17 14:39:27 +00:00
|
|
|
EDA_ITEM* LIB_POLYLINE::Clone() const
|
2010-11-27 13:09:18 +00:00
|
|
|
{
|
2011-04-27 19:44:32 +00:00
|
|
|
return new LIB_POLYLINE( *this );
|
2010-11-27 13:09:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-27 23:02:08 +00:00
|
|
|
int LIB_POLYLINE::compare( const LIB_ITEM& aOther ) const
|
2010-11-27 13:09:18 +00:00
|
|
|
{
|
2010-12-10 19:47:44 +00:00
|
|
|
wxASSERT( aOther.Type() == LIB_POLYLINE_T );
|
2010-11-27 13:09:18 +00:00
|
|
|
|
2011-04-09 19:22:37 +00:00
|
|
|
const LIB_POLYLINE* tmp = (LIB_POLYLINE*) &aOther;
|
2010-11-27 13:09:18 +00:00
|
|
|
|
|
|
|
if( m_PolyPoints.size() != tmp->m_PolyPoints.size() )
|
|
|
|
return m_PolyPoints.size() - tmp->m_PolyPoints.size();
|
|
|
|
|
|
|
|
for( size_t i = 0; i < m_PolyPoints.size(); i++ )
|
|
|
|
{
|
|
|
|
if( m_PolyPoints[i].x != tmp->m_PolyPoints[i].x )
|
|
|
|
return m_PolyPoints[i].x - tmp->m_PolyPoints[i].x;
|
2011-10-31 20:49:48 +00:00
|
|
|
|
2010-11-27 13:09:18 +00:00
|
|
|
if( m_PolyPoints[i].y != tmp->m_PolyPoints[i].y )
|
|
|
|
return m_PolyPoints[i].y - tmp->m_PolyPoints[i].y;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-05-09 07:57:07 +00:00
|
|
|
void LIB_POLYLINE::Offset( const wxPoint& aOffset )
|
2010-11-27 13:09:18 +00:00
|
|
|
{
|
2019-05-20 10:23:32 +00:00
|
|
|
for( wxPoint& point : m_PolyPoints )
|
|
|
|
point += aOffset;
|
2010-11-27 13:09:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-27 23:02:08 +00:00
|
|
|
bool LIB_POLYLINE::Inside( EDA_RECT& aRect ) const
|
2010-11-27 13:09:18 +00:00
|
|
|
{
|
2019-05-20 10:23:32 +00:00
|
|
|
for( const wxPoint& point : m_PolyPoints )
|
2010-11-27 13:09:18 +00:00
|
|
|
{
|
2019-05-20 10:23:32 +00:00
|
|
|
if( aRect.Contains( point.x, -point.y ) )
|
2010-11-27 13:09:18 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-05-09 07:57:07 +00:00
|
|
|
void LIB_POLYLINE::MoveTo( const wxPoint& aPosition )
|
2010-11-27 13:09:18 +00:00
|
|
|
{
|
2019-05-09 07:57:07 +00:00
|
|
|
Offset( aPosition - m_PolyPoints[ 0 ] );
|
2010-11-27 13:09:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-27 23:02:08 +00:00
|
|
|
void LIB_POLYLINE::MirrorHorizontal( const wxPoint& aCenter )
|
2010-11-27 13:09:18 +00:00
|
|
|
{
|
2019-05-20 10:23:32 +00:00
|
|
|
for( wxPoint& point : m_PolyPoints )
|
2010-11-27 13:09:18 +00:00
|
|
|
{
|
2019-05-20 10:23:32 +00:00
|
|
|
point.x -= aCenter.x;
|
|
|
|
point.x *= -1;
|
|
|
|
point.x += aCenter.x;
|
2010-11-27 13:09:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-27 23:02:08 +00:00
|
|
|
void LIB_POLYLINE::MirrorVertical( const wxPoint& aCenter )
|
2011-05-20 18:29:35 +00:00
|
|
|
{
|
2019-05-20 10:23:32 +00:00
|
|
|
for( wxPoint& point : m_PolyPoints )
|
2011-05-20 18:29:35 +00:00
|
|
|
{
|
2019-05-20 10:23:32 +00:00
|
|
|
point.y -= aCenter.y;
|
|
|
|
point.y *= -1;
|
|
|
|
point.y += aCenter.y;
|
2011-05-20 18:29:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-27 23:02:08 +00:00
|
|
|
void LIB_POLYLINE::Rotate( const wxPoint& aCenter, bool aRotateCCW )
|
2011-05-20 18:29:35 +00:00
|
|
|
{
|
2019-05-20 10:23:32 +00:00
|
|
|
for( wxPoint& point : m_PolyPoints )
|
|
|
|
RotatePoint( &point, aCenter, aRotateCCW ? -900 : 900 );
|
2011-05-20 18:29:35 +00:00
|
|
|
}
|
|
|
|
|
2010-11-27 13:09:18 +00:00
|
|
|
|
2012-02-27 23:02:08 +00:00
|
|
|
void LIB_POLYLINE::Plot( PLOTTER* aPlotter, const wxPoint& aOffset, bool aFill,
|
|
|
|
const TRANSFORM& aTransform )
|
2010-11-27 13:09:18 +00:00
|
|
|
{
|
|
|
|
wxASSERT( aPlotter != NULL );
|
|
|
|
|
2011-04-20 08:13:21 +00:00
|
|
|
static std::vector< wxPoint > cornerList;
|
|
|
|
cornerList.clear();
|
2010-11-27 13:09:18 +00:00
|
|
|
|
2019-05-20 10:23:32 +00:00
|
|
|
for( wxPoint pos : m_PolyPoints )
|
2010-11-27 13:09:18 +00:00
|
|
|
{
|
2011-04-09 19:22:37 +00:00
|
|
|
pos = aTransform.TransformCoordinate( pos ) + aOffset;
|
2011-04-20 08:13:21 +00:00
|
|
|
cornerList.push_back( pos );
|
2010-11-27 13:09:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if( aFill && m_Fill == FILLED_WITH_BG_BODYCOLOR )
|
|
|
|
{
|
2013-04-04 21:35:01 +00:00
|
|
|
aPlotter->SetColor( GetLayerColor( LAYER_DEVICE_BACKGROUND ) );
|
2011-04-20 08:13:21 +00:00
|
|
|
aPlotter->PlotPoly( cornerList, FILLED_WITH_BG_BODYCOLOR, 0 );
|
2010-11-27 13:09:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool already_filled = m_Fill == FILLED_WITH_BG_BODYCOLOR;
|
2019-03-11 06:41:00 +00:00
|
|
|
auto pen_size = GetPenSize();
|
|
|
|
|
|
|
|
if( !already_filled || pen_size > 0 )
|
|
|
|
{
|
|
|
|
pen_size = std::max( 0, pen_size );
|
|
|
|
aPlotter->SetColor( GetLayerColor( LAYER_DEVICE ) );
|
2019-04-04 22:49:49 +00:00
|
|
|
aPlotter->PlotPoly( cornerList, already_filled ? NO_FILL : m_Fill, pen_size );
|
2019-03-11 06:41:00 +00:00
|
|
|
}
|
2010-11-27 13:09:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-05-08 18:56:03 +00:00
|
|
|
void LIB_POLYLINE::AddPoint( const wxPoint& aPosition )
|
2010-11-27 13:09:18 +00:00
|
|
|
{
|
2019-05-08 18:56:03 +00:00
|
|
|
m_PolyPoints.push_back( aPosition );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void LIB_POLYLINE::AddCorner( const wxPoint& aPosition )
|
|
|
|
{
|
|
|
|
int currentMinDistance = INT_MAX;
|
|
|
|
int closestLineStart = 0;
|
|
|
|
|
2019-05-11 09:12:39 +00:00
|
|
|
for( unsigned i = 0; i < m_PolyPoints.size() - 1; ++i )
|
2019-05-08 18:56:03 +00:00
|
|
|
{
|
|
|
|
int distance = (int) DistanceLinePoint( m_PolyPoints[i], m_PolyPoints[i + 1], aPosition );
|
|
|
|
|
|
|
|
if( distance < currentMinDistance )
|
|
|
|
{
|
|
|
|
currentMinDistance = distance;
|
|
|
|
closestLineStart = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
m_PolyPoints.insert( m_PolyPoints.begin() + closestLineStart, aPosition );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void LIB_POLYLINE::RemoveCorner( int aIdx )
|
|
|
|
{
|
|
|
|
m_PolyPoints.erase( m_PolyPoints.begin() + aIdx );
|
2010-11-27 13:09:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-04-18 20:22:17 +00:00
|
|
|
int LIB_POLYLINE::GetPenSize() const
|
2010-11-27 13:09:18 +00:00
|
|
|
{
|
2018-10-20 11:08:33 +00:00
|
|
|
if( m_Width > 0 )
|
|
|
|
return m_Width;
|
|
|
|
|
|
|
|
if( m_Width == 0 )
|
|
|
|
return GetDefaultLineThickness();
|
|
|
|
|
|
|
|
return -1; // the minimal pen value
|
2010-11-27 13:09:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-05-31 12:15:25 +00:00
|
|
|
void LIB_POLYLINE::print( wxDC* aDC, const wxPoint& aOffset, void* aData,
|
|
|
|
const TRANSFORM& aTransform )
|
2010-11-27 13:09:18 +00:00
|
|
|
{
|
2019-04-04 22:49:49 +00:00
|
|
|
COLOR4D color = GetLayerColor( LAYER_DEVICE );
|
|
|
|
COLOR4D bgColor = GetLayerColor( LAYER_DEVICE_BACKGROUND );
|
2010-11-27 13:09:18 +00:00
|
|
|
|
2019-04-04 22:49:49 +00:00
|
|
|
wxPoint* buffer = new wxPoint[ m_PolyPoints.size() ];
|
2010-11-27 13:09:18 +00:00
|
|
|
|
|
|
|
for( unsigned ii = 0; ii < m_PolyPoints.size(); ii++ )
|
2011-11-10 15:55:05 +00:00
|
|
|
buffer[ii] = aTransform.TransformCoordinate( m_PolyPoints[ii] ) + aOffset;
|
2010-11-27 13:09:18 +00:00
|
|
|
|
|
|
|
FILL_T fill = aData ? NO_FILL : m_Fill;
|
2011-10-31 20:49:48 +00:00
|
|
|
|
2010-11-27 13:09:18 +00:00
|
|
|
if( fill == FILLED_WITH_BG_BODYCOLOR )
|
2019-05-31 12:15:25 +00:00
|
|
|
GRPoly( nullptr, aDC, m_PolyPoints.size(), buffer, 1, GetPenSize(), bgColor, bgColor );
|
2010-11-27 13:09:18 +00:00
|
|
|
else if( fill == FILLED_SHAPE )
|
2019-05-31 12:15:25 +00:00
|
|
|
GRPoly( nullptr, aDC, m_PolyPoints.size(), buffer, 1, GetPenSize(), color, color );
|
2010-11-27 13:09:18 +00:00
|
|
|
else
|
2019-05-31 12:15:25 +00:00
|
|
|
GRPoly( nullptr, aDC, m_PolyPoints.size(), buffer, 0, GetPenSize(), color, color );
|
2011-11-10 15:55:05 +00:00
|
|
|
|
|
|
|
delete[] buffer;
|
2010-11-27 13:09:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-05-05 10:33:34 +00:00
|
|
|
bool LIB_POLYLINE::HitTest( const wxPoint& aPosition, int aAccuracy ) const
|
2010-11-27 13:09:18 +00:00
|
|
|
{
|
2019-05-05 10:33:34 +00:00
|
|
|
int mindist = std::max( aAccuracy + GetPenSize() / 2, MINIMUM_SELECTION_DISTANCE );
|
|
|
|
wxPoint start, end;
|
2010-11-27 13:09:18 +00:00
|
|
|
|
2019-05-05 10:33:34 +00:00
|
|
|
for( unsigned ii = 1; ii < GetCornerCount(); ii++ )
|
|
|
|
{
|
|
|
|
start = DefaultTransform.TransformCoordinate( m_PolyPoints[ii - 1] );
|
|
|
|
end = DefaultTransform.TransformCoordinate( m_PolyPoints[ii] );
|
2011-10-31 20:49:48 +00:00
|
|
|
|
2019-05-05 10:33:34 +00:00
|
|
|
if( TestSegmentHit( aPosition, start, end, mindist ) )
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2010-11-27 13:09:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-05-05 10:33:34 +00:00
|
|
|
bool LIB_POLYLINE::HitTest( const EDA_RECT& aRect, bool aContained, int aAccuracy ) const
|
2010-11-27 13:09:18 +00:00
|
|
|
{
|
2019-05-05 10:33:34 +00:00
|
|
|
if( m_Flags & ( STRUCT_DELETED | SKIP_STRUCT ) )
|
|
|
|
return false;
|
2010-11-27 13:09:18 +00:00
|
|
|
|
2019-05-10 22:24:27 +00:00
|
|
|
EDA_RECT sel = aRect;
|
2011-05-25 10:42:56 +00:00
|
|
|
|
2019-05-05 10:33:34 +00:00
|
|
|
if ( aAccuracy )
|
2019-05-10 22:24:27 +00:00
|
|
|
sel.Inflate( aAccuracy );
|
2010-11-27 13:09:18 +00:00
|
|
|
|
2019-05-05 10:33:34 +00:00
|
|
|
if( aContained )
|
2019-05-10 22:24:27 +00:00
|
|
|
return sel.Contains( GetBoundingBox() );
|
2010-11-27 13:09:18 +00:00
|
|
|
|
2019-05-10 22:24:27 +00:00
|
|
|
// Fast test: if rect is outside the polygon bounding box, then they cannot intersect
|
|
|
|
if( !sel.Intersects( GetBoundingBox() ) )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Account for the width of the line
|
|
|
|
sel.Inflate( GetWidth() / 2 );
|
|
|
|
int count = m_PolyPoints.size();
|
|
|
|
|
|
|
|
for( int ii = 0; ii < count; ii++ )
|
|
|
|
{
|
|
|
|
wxPoint pt = DefaultTransform.TransformCoordinate( m_PolyPoints[ ii ] );
|
|
|
|
wxPoint ptNext = DefaultTransform.TransformCoordinate( m_PolyPoints[ (ii+1) % count ] );
|
|
|
|
|
|
|
|
// Test if the point is within aRect
|
|
|
|
if( sel.Contains( pt ) )
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// Test if this edge intersects aRect
|
|
|
|
if( sel.Intersects( pt, ptNext ) )
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2010-11-27 13:09:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-11-24 17:48:14 +00:00
|
|
|
const EDA_RECT LIB_POLYLINE::GetBoundingBox() const
|
2010-11-27 13:09:18 +00:00
|
|
|
{
|
2011-03-29 19:33:07 +00:00
|
|
|
EDA_RECT rect;
|
2010-11-27 13:09:18 +00:00
|
|
|
int xmin, xmax, ymin, ymax;
|
|
|
|
|
|
|
|
xmin = xmax = m_PolyPoints[0].x;
|
|
|
|
ymin = ymax = m_PolyPoints[0].y;
|
|
|
|
|
|
|
|
for( unsigned ii = 1; ii < GetCornerCount(); ii++ )
|
|
|
|
{
|
2012-09-22 11:19:37 +00:00
|
|
|
xmin = std::min( xmin, m_PolyPoints[ii].x );
|
|
|
|
xmax = std::max( xmax, m_PolyPoints[ii].x );
|
|
|
|
ymin = std::min( ymin, m_PolyPoints[ii].y );
|
|
|
|
ymax = std::max( ymax, m_PolyPoints[ii].y );
|
2010-11-27 13:09:18 +00:00
|
|
|
}
|
|
|
|
|
2015-06-18 14:56:08 +00:00
|
|
|
rect.SetOrigin( xmin, ymin );
|
|
|
|
rect.SetEnd( xmax, ymax );
|
|
|
|
rect.Inflate( ( GetPenSize()+1 ) / 2 );
|
|
|
|
|
|
|
|
rect.RevertYAxis();
|
2010-11-27 13:09:18 +00:00
|
|
|
|
|
|
|
return rect;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void LIB_POLYLINE::DeleteSegment( const wxPoint aPosition )
|
|
|
|
{
|
|
|
|
// First segment is kept, only its end point is changed
|
|
|
|
while( GetCornerCount() > 2 )
|
|
|
|
{
|
|
|
|
m_PolyPoints.pop_back();
|
|
|
|
|
|
|
|
if( m_PolyPoints[ GetCornerCount() - 1 ] != aPosition )
|
|
|
|
{
|
|
|
|
m_PolyPoints[ GetCornerCount() - 1 ] = aPosition;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-04-10 10:52:12 +00:00
|
|
|
void LIB_POLYLINE::GetMsgPanelInfo( EDA_UNITS_T aUnits, MSG_PANEL_ITEMS& aList )
|
2010-11-27 13:09:18 +00:00
|
|
|
{
|
|
|
|
wxString msg;
|
2011-03-29 19:33:07 +00:00
|
|
|
EDA_RECT bBox = GetBoundingBox();
|
2010-11-27 13:09:18 +00:00
|
|
|
|
2018-04-10 10:52:12 +00:00
|
|
|
LIB_ITEM::GetMsgPanelInfo( aUnits, aList );
|
2010-11-27 13:09:18 +00:00
|
|
|
|
2018-04-10 10:52:12 +00:00
|
|
|
msg = MessageTextFromValue( aUnits, m_Width, true );
|
2010-11-27 13:09:18 +00:00
|
|
|
|
2014-11-15 19:06:05 +00:00
|
|
|
aList.push_back( MSG_PANEL_ITEM( _( "Line Width" ), msg, BLUE ) );
|
2010-11-27 13:09:18 +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 ) );
|
2010-11-27 13:09:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-04-10 10:52:12 +00:00
|
|
|
wxString LIB_POLYLINE::GetSelectMenuText( EDA_UNITS_T aUnits ) const
|
2011-04-27 19:44:32 +00:00
|
|
|
{
|
2015-09-07 15:20:15 +00:00
|
|
|
return wxString::Format( _( "Polyline at (%s, %s) with %d points" ),
|
2018-04-10 10:52:12 +00:00
|
|
|
MessageTextFromValue( aUnits, m_PolyPoints[0].x ),
|
|
|
|
MessageTextFromValue( aUnits, m_PolyPoints[0].y ),
|
2015-09-07 15:20:15 +00:00
|
|
|
int( m_PolyPoints.size() ) );
|
2011-04-27 19:44:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-02-20 12:20:39 +00:00
|
|
|
BITMAP_DEF LIB_POLYLINE::GetMenuImage() const
|
|
|
|
{
|
2019-05-23 14:20:42 +00:00
|
|
|
return add_graphical_segments_xpm;
|
2017-02-20 12:20:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-05-20 10:23:32 +00:00
|
|
|
void LIB_POLYLINE::BeginEdit( const wxPoint aPosition )
|
2010-11-27 13:09:18 +00:00
|
|
|
{
|
2019-05-20 10:23:32 +00:00
|
|
|
m_PolyPoints.push_back( aPosition ); // Start point of first segment.
|
|
|
|
m_PolyPoints.push_back( aPosition ); // End point of first segment.
|
2010-11-27 13:09:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool LIB_POLYLINE::ContinueEdit( const wxPoint aPosition )
|
|
|
|
{
|
2019-05-20 10:23:32 +00:00
|
|
|
// do not add zero length segments
|
|
|
|
if( m_PolyPoints[m_PolyPoints.size() - 2] != m_PolyPoints.back() )
|
|
|
|
m_PolyPoints.push_back( aPosition );
|
2011-10-31 20:49:48 +00:00
|
|
|
|
2019-05-20 10:23:32 +00:00
|
|
|
return true;
|
2010-11-27 13:09:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-05-20 10:23:32 +00:00
|
|
|
void LIB_POLYLINE::EndEdit()
|
2010-11-27 13:09:18 +00:00
|
|
|
{
|
2011-04-01 01:19:37 +00:00
|
|
|
// do not include last point twice
|
2019-05-20 10:23:32 +00:00
|
|
|
if( m_PolyPoints.size() > 2 )
|
2011-04-01 01:19:37 +00:00
|
|
|
{
|
2011-04-01 02:23:13 +00:00
|
|
|
if( m_PolyPoints[ m_PolyPoints.size() - 2 ] == m_PolyPoints.back() )
|
2011-04-01 01:19:37 +00:00
|
|
|
m_PolyPoints.pop_back();
|
|
|
|
}
|
2010-11-27 13:09:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-08-03 12:18:26 +00:00
|
|
|
void LIB_POLYLINE::CalcEdit( const wxPoint& aPosition )
|
2010-11-27 13:09:18 +00:00
|
|
|
{
|
2019-05-20 10:23:32 +00:00
|
|
|
m_PolyPoints[ GetCornerCount() - 1 ] = aPosition;
|
2010-11-27 13:09:18 +00:00
|
|
|
}
|