mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-04-05 00:25:20 +00:00
Neurotically update position wxPoint usages
This commit is contained in:
parent
cadc0639eb
commit
c4c56de708
3d-viewer/3d_canvas
common
basic_gal.cppbitmap_base.cpp
drawing_sheet
eda_draw_frame.cppeda_rect.cppeda_shape.cppeda_text.cppgr_basic.cppmarker_base.cppplugins/eagle
rc_item.cpptool
eeschema
autoplace_fields.cppbus-wire-junction.cppconnection_graph.cppcross-probing.cppsch_reference_list.hsch_rtree.hsch_screen.cppsch_screen.hsch_shape.cppsch_shape.hsch_sheet.cppsch_sheet.hsch_sheet_path.cppsch_sheet_pin.cppsch_sheet_pin.hsch_symbol.cppsch_symbol.hsch_text.cppsch_text.h
dialogs
dialog_change_symbols.cppdialog_field_properties.cppdialog_lib_edit_pin_table.cppdialog_lib_symbol_properties.cppdialog_pin_properties.cppdialog_pin_properties.hdialog_symbol_fields_table.cppdialog_update_symbol_fields.cpppanel_eeschema_color_settings.cpp
ee_collectors.cppee_collectors.herc.cpplib_field.cpplib_field.hlib_item.cpplib_item.hlib_pin.cpplib_pin.hlib_shape.cpplib_shape.hlib_symbol.cpplib_symbol.hlib_text.cpplib_text.hsch_base_frame.cppsch_base_frame.hsch_bitmap.cppsch_bitmap.hsch_bus_entry.cppsch_bus_entry.hsch_edit_frame.cppsch_edit_frame.hsch_field.cppsch_field.hsch_item.cppsch_item.hsch_junction.cppsch_junction.hsch_line.cppsch_line.hsch_marker.cppsch_marker.hsch_no_connect.cppsch_no_connect.hsch_painter.cppsch_pin.cppsch_pin.hsch_plugins
altium
cadstar
eagle
kicad
legacy
symbol_editor
tools
gerbview
am_primitive.cppam_primitive.hdcode.cppdcode.hexport_to_pcbnew.cppexport_to_pcbnew.hgerber_draw_item.cppgerber_draw_item.hgerbview_painter.cpprs274d.cpp
include
basic_gal.hbitmap_base.hboard_item.hcollector.h
drawing_sheet
eda_draw_frame.heda_item.heda_rect.heda_shape.heda_text.hgr_basic.hmarker_base.horigin_viewitem.hpcb_group.hrc_item.hlibs/kimath
pagelayout_editor
pcbnew
autorouter
board.cppboard.hboard_item.cppcollectors.cppcollectors.hconnectivity
convert_shape_list_to_polygon.cppconvert_shape_list_to_polygon.hdialogs
drc
drc_engine.cppdrc_engine.hdrc_test_provider.cppdrc_test_provider.hdrc_test_provider_connectivity.cppdrc_test_provider_courtyard_clearance.cppdrc_test_provider_mechanical_clearance.cppdrc_test_provider_misc.cppdrc_test_provider_track_width.cpp
exporters
footprint.cppfootprint.hfp_shape.cppfp_shape.hfp_text.cppfp_text.hfp_text_grid_table.cppimport_gfx
kicad_clipboard.cppmicrowave
netinfo.hnetlist_reader
pad.cpppad.hpad_custom_shape_functions.cpppcb_base_frame.cpppcb_dimension.cpppcb_dimension.hpcb_group.cpppcb_marker.cpppcb_marker.hpcb_painter.cpppcb_shape.cpppcb_shape.hpcb_target.cpppcb_target.hpcb_text.cpppcb_text.hpcb_track.cpppcb_track.hpcbplot.hplot_brditems_plotter.cppplugins
altium
cadstar
eagle
geda
kicad
legacy
pcad
python/scripting
ratsnest
router
specctra_import_export
tools
convert_tool.cppdrawing_tool.cppdrc_tool.cppedit_tool.cpppcb_grid_helper.cpppcb_point_editor.cpppcb_selection.cpppcb_selection_tool.cpp
zone.cppzone.hzone_filler.cppqa
@ -694,7 +694,7 @@ void BOARD_ADAPTER::addShapeWithClearance( const PCB_SHAPE* aShape,
|
||||
}
|
||||
else
|
||||
{
|
||||
std::vector<wxPoint> pts = aShape->GetRectCorners();
|
||||
std::vector<VECTOR2I> pts = aShape->GetRectCorners();
|
||||
|
||||
const SFVEC2F topLeft3DU( pts[0].x * m_biuTo3Dunits, -pts[0].y * m_biuTo3Dunits );
|
||||
const SFVEC2F topRight3DU( pts[1].x * m_biuTo3Dunits, -pts[1].y * m_biuTo3Dunits );
|
||||
|
@ -53,7 +53,7 @@ const VECTOR2D BASIC_GAL::transform( const VECTOR2D& aPoint ) const
|
||||
}
|
||||
|
||||
|
||||
void BASIC_GAL::doDrawPolyline( const std::vector<wxPoint>& aLocalPointList )
|
||||
void BASIC_GAL::doDrawPolyline( const std::vector<VECTOR2I>& aLocalPointList )
|
||||
{
|
||||
if( m_DC )
|
||||
{
|
||||
@ -98,10 +98,10 @@ void BASIC_GAL::DrawPolyline( const std::deque<VECTOR2D>& aPointList )
|
||||
if( aPointList.size() < 2 )
|
||||
return;
|
||||
|
||||
std::vector<wxPoint> polyline_corners;
|
||||
std::vector<VECTOR2I> polyline_corners;
|
||||
|
||||
for( const VECTOR2D& pt : aPointList )
|
||||
polyline_corners.emplace_back( (wxPoint) transform( pt ) );
|
||||
polyline_corners.emplace_back( (VECTOR2I) transform( pt ) );
|
||||
|
||||
doDrawPolyline( polyline_corners );
|
||||
}
|
||||
@ -112,10 +112,10 @@ void BASIC_GAL::DrawPolyline( const VECTOR2D aPointList[], int aListSize )
|
||||
if( aListSize < 2 )
|
||||
return;
|
||||
|
||||
std::vector<wxPoint> polyline_corners;
|
||||
std::vector<VECTOR2I> polyline_corners;
|
||||
|
||||
for( int ii = 0; ii < aListSize; ++ii )
|
||||
polyline_corners.emplace_back( (wxPoint) transform( aPointList[ ii ] ) );
|
||||
polyline_corners.emplace_back( (VECTOR2I) transform( aPointList[ii] ) );
|
||||
|
||||
doDrawPolyline( polyline_corners );
|
||||
}
|
||||
|
@ -37,7 +37,7 @@
|
||||
#include <wx/mstream.h>
|
||||
|
||||
|
||||
BITMAP_BASE::BITMAP_BASE( const wxPoint& pos )
|
||||
BITMAP_BASE::BITMAP_BASE( const VECTOR2I& pos )
|
||||
{
|
||||
m_scale = 1.0; // 1.0 = original bitmap size
|
||||
m_bitmap = nullptr;
|
||||
@ -229,12 +229,12 @@ const EDA_RECT BITMAP_BASE::GetBoundingBox() const
|
||||
}
|
||||
|
||||
|
||||
void BITMAP_BASE::DrawBitmap( wxDC* aDC, const wxPoint& aPos )
|
||||
void BITMAP_BASE::DrawBitmap( wxDC* aDC, const VECTOR2I& aPos )
|
||||
{
|
||||
if( m_bitmap == nullptr )
|
||||
return;
|
||||
|
||||
wxPoint pos = aPos;
|
||||
VECTOR2I pos = aPos;
|
||||
wxSize size = GetSize();
|
||||
|
||||
// This fixes a bug in OSX that should be fixed in the 3.0.3 version or later.
|
||||
@ -328,8 +328,7 @@ void BITMAP_BASE::Rotate( bool aRotateCCW )
|
||||
}
|
||||
|
||||
|
||||
void BITMAP_BASE::PlotImage( PLOTTER* aPlotter,
|
||||
const wxPoint& aPos,
|
||||
void BITMAP_BASE::PlotImage( PLOTTER* aPlotter, const VECTOR2I& aPos,
|
||||
const COLOR4D& aDefaultColor,
|
||||
int aDefaultPensize ) const
|
||||
{
|
||||
|
@ -143,7 +143,7 @@ int DS_DATA_ITEM::GetPenSizeUi()
|
||||
}
|
||||
|
||||
|
||||
void DS_DATA_ITEM::MoveToUi( const wxPoint& aPosition )
|
||||
void DS_DATA_ITEM::MoveToUi( const VECTOR2I& aPosition )
|
||||
{
|
||||
DPOINT pos_mm;
|
||||
pos_mm.x = aPosition.x / DS_DATA_MODEL::GetTheInstance().m_WSunits2Iu;
|
||||
@ -202,7 +202,7 @@ void DS_DATA_ITEM::MoveStartPointTo( const DPOINT& aPosition )
|
||||
}
|
||||
|
||||
|
||||
void DS_DATA_ITEM::MoveStartPointToUi( const wxPoint& aPosition )
|
||||
void DS_DATA_ITEM::MoveStartPointToUi( const VECTOR2I& aPosition )
|
||||
{
|
||||
DPOINT pos_mm( aPosition.x / DS_DATA_MODEL::GetTheInstance().m_WSunits2Iu,
|
||||
aPosition.y / DS_DATA_MODEL::GetTheInstance().m_WSunits2Iu );
|
||||
@ -254,7 +254,7 @@ void DS_DATA_ITEM::MoveEndPointTo( const DPOINT& aPosition )
|
||||
}
|
||||
|
||||
|
||||
void DS_DATA_ITEM::MoveEndPointToUi( const wxPoint& aPosition )
|
||||
void DS_DATA_ITEM::MoveEndPointToUi( const VECTOR2I& aPosition )
|
||||
{
|
||||
DPOINT pos_mm;
|
||||
pos_mm.x = aPosition.x / DS_DATA_MODEL::GetTheInstance().m_WSunits2Iu;
|
||||
@ -295,10 +295,10 @@ const DPOINT DS_DATA_ITEM::GetStartPos( int ii ) const
|
||||
}
|
||||
|
||||
|
||||
const wxPoint DS_DATA_ITEM::GetStartPosUi( int ii ) const
|
||||
const VECTOR2I DS_DATA_ITEM::GetStartPosUi( int ii ) const
|
||||
{
|
||||
DPOINT pos = GetStartPos( ii ) * DS_DATA_MODEL::GetTheInstance().m_WSunits2Iu;
|
||||
return wxPoint( KiROUND( pos.x ), KiROUND( pos.y ) );
|
||||
return VECTOR2I( KiROUND( pos.x ), KiROUND( pos.y ) );
|
||||
}
|
||||
|
||||
|
||||
@ -332,11 +332,11 @@ const DPOINT DS_DATA_ITEM::GetEndPos( int ii ) const
|
||||
}
|
||||
|
||||
|
||||
const wxPoint DS_DATA_ITEM::GetEndPosUi( int ii ) const
|
||||
const VECTOR2I DS_DATA_ITEM::GetEndPosUi( int ii ) const
|
||||
{
|
||||
DPOINT pos = GetEndPos( ii );
|
||||
pos = pos * DS_DATA_MODEL::GetTheInstance().m_WSunits2Iu;
|
||||
return wxPoint( KiROUND( pos.x ), KiROUND( pos.y ) );
|
||||
return VECTOR2I( KiROUND( pos.x ), KiROUND( pos.y ) );
|
||||
}
|
||||
|
||||
|
||||
@ -510,11 +510,11 @@ bool DS_DATA_ITEM_POLYGONS::IsInsidePage( int ii ) const
|
||||
}
|
||||
|
||||
|
||||
const wxPoint DS_DATA_ITEM_POLYGONS::GetCornerPositionUi( unsigned aIdx, int aRepeat ) const
|
||||
const VECTOR2I DS_DATA_ITEM_POLYGONS::GetCornerPositionUi( unsigned aIdx, int aRepeat ) const
|
||||
{
|
||||
DPOINT pos = GetCornerPosition( aIdx, aRepeat );
|
||||
pos = pos * DS_DATA_MODEL::GetTheInstance().m_WSunits2Iu;
|
||||
return wxPoint( int(pos.x), int(pos.y) );
|
||||
return VECTOR2I( int( pos.x ), int( pos.y ) );
|
||||
}
|
||||
|
||||
|
||||
@ -692,7 +692,7 @@ void DS_DATA_ITEM_TEXT::SetConstrainedTextSize()
|
||||
int linewidth = 0;
|
||||
size_micron.x = KiROUND( m_ConstrainedTextSize.x * FSCALE );
|
||||
size_micron.y = KiROUND( m_ConstrainedTextSize.y * FSCALE );
|
||||
DS_DRAW_ITEM_TEXT dummy( DS_DRAW_ITEM_TEXT( this, 0, m_FullText, wxPoint( 0, 0 ),
|
||||
DS_DRAW_ITEM_TEXT dummy( DS_DRAW_ITEM_TEXT( this, 0, m_FullText, VECTOR2I( 0, 0 ),
|
||||
size_micron, linewidth, m_Italic, m_Bold ) );
|
||||
dummy.SetMultilineAllowed( true );
|
||||
dummy.SetHorizJustify( m_Hjustify ) ;
|
||||
|
@ -158,7 +158,7 @@ void DS_DRAW_ITEM_BASE::GetMsgPanelInfo( EDA_DRAW_FRAME* aFrame,
|
||||
|
||||
// ============================ TEXT ==============================
|
||||
|
||||
void DS_DRAW_ITEM_TEXT::PrintWsItem( const RENDER_SETTINGS* aSettings, const wxPoint& aOffset )
|
||||
void DS_DRAW_ITEM_TEXT::PrintWsItem( const RENDER_SETTINGS* aSettings, const VECTOR2I& aOffset )
|
||||
{
|
||||
Print( aSettings, aOffset, aSettings->GetLayerColor( LAYER_DRAWINGSHEET ), FILLED );
|
||||
}
|
||||
@ -170,7 +170,7 @@ const EDA_RECT DS_DRAW_ITEM_TEXT::GetBoundingBox() const
|
||||
}
|
||||
|
||||
|
||||
bool DS_DRAW_ITEM_TEXT::HitTest( const wxPoint& aPosition, int aAccuracy ) const
|
||||
bool DS_DRAW_ITEM_TEXT::HitTest( const VECTOR2I& aPosition, int aAccuracy ) const
|
||||
{
|
||||
return EDA_TEXT::TextHitTest( aPosition, aAccuracy );
|
||||
}
|
||||
@ -197,13 +197,13 @@ void DS_DRAW_ITEM_TEXT::SetTextAngle( double aAngle )
|
||||
// ============================ POLYGON =================================
|
||||
|
||||
void DS_DRAW_ITEM_POLYPOLYGONS::PrintWsItem( const RENDER_SETTINGS* aSettings,
|
||||
const wxPoint& aOffset )
|
||||
const VECTOR2I& aOffset )
|
||||
{
|
||||
wxDC* DC = aSettings->GetPrintDC();
|
||||
COLOR4D color = aSettings->GetLayerColor( LAYER_DRAWINGSHEET );
|
||||
int penWidth = std::max( GetPenWidth(), aSettings->GetDefaultPenWidth() );
|
||||
|
||||
std::vector<wxPoint> points_moved;
|
||||
std::vector<VECTOR2I> points_moved;
|
||||
|
||||
for( int idx = 0; idx < m_Polygons.OutlineCount(); ++idx )
|
||||
{
|
||||
@ -222,10 +222,10 @@ void DS_DRAW_ITEM_POLYPOLYGONS::PrintWsItem( const RENDER_SETTINGS* aSettings,
|
||||
}
|
||||
|
||||
|
||||
void DS_DRAW_ITEM_POLYPOLYGONS::SetPosition( const wxPoint& aPos )
|
||||
void DS_DRAW_ITEM_POLYPOLYGONS::SetPosition( const VECTOR2I& aPos )
|
||||
{
|
||||
// Note: m_pos is the anchor point of the shape.
|
||||
wxPoint move_vect = aPos - m_pos;
|
||||
VECTOR2I move_vect = aPos - m_pos;
|
||||
m_pos = aPos;
|
||||
|
||||
// Move polygon corners to the new position:
|
||||
@ -247,7 +247,7 @@ const EDA_RECT DS_DRAW_ITEM_POLYPOLYGONS::GetBoundingBox() const
|
||||
}
|
||||
|
||||
|
||||
bool DS_DRAW_ITEM_POLYPOLYGONS::HitTest( const wxPoint& aPosition, int aAccuracy ) const
|
||||
bool DS_DRAW_ITEM_POLYPOLYGONS::HitTest( const VECTOR2I& aPosition, int aAccuracy ) const
|
||||
{
|
||||
return m_Polygons.Collide( aPosition, aAccuracy );
|
||||
}
|
||||
@ -274,7 +274,7 @@ bool DS_DRAW_ITEM_POLYPOLYGONS::HitTest( const EDA_RECT& aRect, bool aContained,
|
||||
|
||||
for( int ii = 0; ii < outline.PointCount(); ii++ )
|
||||
{
|
||||
wxPoint corner( outline.CPoint( ii ).x, outline.CPoint( ii ).y );
|
||||
VECTOR2I corner( outline.CPoint( ii ).x, outline.CPoint( ii ).y );
|
||||
|
||||
// Test if the point is within aRect
|
||||
if( sel.Contains( corner ) )
|
||||
@ -282,7 +282,7 @@ bool DS_DRAW_ITEM_POLYPOLYGONS::HitTest( const EDA_RECT& aRect, bool aContained,
|
||||
|
||||
// Test if this edge intersects aRect
|
||||
int ii_next = (ii+1) % outline.PointCount();
|
||||
wxPoint next_corner( outline.CPoint( ii_next ).x, outline.CPoint( ii_next ).y );
|
||||
VECTOR2I next_corner( outline.CPoint( ii_next ).x, outline.CPoint( ii_next ).y );
|
||||
|
||||
if( sel.Intersects( corner, next_corner ) )
|
||||
return true;
|
||||
@ -301,7 +301,7 @@ wxString DS_DRAW_ITEM_POLYPOLYGONS::GetSelectMenuText( EDA_UNITS aUnits ) const
|
||||
|
||||
// ============================ RECT ==============================
|
||||
|
||||
void DS_DRAW_ITEM_RECT::PrintWsItem( const RENDER_SETTINGS* aSettings, const wxPoint& aOffset )
|
||||
void DS_DRAW_ITEM_RECT::PrintWsItem( const RENDER_SETTINGS* aSettings, const VECTOR2I& aOffset )
|
||||
{
|
||||
wxDC* DC = aSettings->GetPrintDC();
|
||||
COLOR4D color = aSettings->GetLayerColor( LAYER_DRAWINGSHEET );
|
||||
@ -318,11 +318,11 @@ const EDA_RECT DS_DRAW_ITEM_RECT::GetBoundingBox() const
|
||||
}
|
||||
|
||||
|
||||
bool DS_DRAW_ITEM_RECT::HitTest( const wxPoint& aPosition, int aAccuracy ) const
|
||||
bool DS_DRAW_ITEM_RECT::HitTest( const VECTOR2I& aPosition, int aAccuracy ) const
|
||||
{
|
||||
int dist = aAccuracy + ( GetPenWidth() / 2 );
|
||||
wxPoint start = GetStart();
|
||||
wxPoint end;
|
||||
VECTOR2I start = GetStart();
|
||||
VECTOR2I end;
|
||||
end.x = GetEnd().x;
|
||||
end.y = start.y;
|
||||
|
||||
@ -400,7 +400,7 @@ wxString DS_DRAW_ITEM_RECT::GetSelectMenuText( EDA_UNITS aUnits ) const
|
||||
|
||||
// ============================ LINE ==============================
|
||||
|
||||
void DS_DRAW_ITEM_LINE::PrintWsItem( const RENDER_SETTINGS* aSettings, const wxPoint& aOffset )
|
||||
void DS_DRAW_ITEM_LINE::PrintWsItem( const RENDER_SETTINGS* aSettings, const VECTOR2I& aOffset )
|
||||
{
|
||||
wxDC* DC = aSettings->GetPrintDC();
|
||||
COLOR4D color = aSettings->GetLayerColor( LAYER_DRAWINGSHEET );
|
||||
@ -416,7 +416,7 @@ const EDA_RECT DS_DRAW_ITEM_LINE::GetBoundingBox() const
|
||||
}
|
||||
|
||||
|
||||
bool DS_DRAW_ITEM_LINE::HitTest( const wxPoint& aPosition, int aAccuracy ) const
|
||||
bool DS_DRAW_ITEM_LINE::HitTest( const VECTOR2I& aPosition, int aAccuracy ) const
|
||||
{
|
||||
int mindist = aAccuracy + ( GetPenWidth() / 2 ) + 1;
|
||||
return TestSegmentHit( aPosition, GetStart(), GetEnd(), mindist );
|
||||
@ -432,7 +432,7 @@ wxString DS_DRAW_ITEM_LINE::GetSelectMenuText( EDA_UNITS aUnits ) const
|
||||
|
||||
// ============== BITMAP ================
|
||||
|
||||
void DS_DRAW_ITEM_BITMAP::PrintWsItem( const RENDER_SETTINGS* aSettings, const wxPoint& aOffset )
|
||||
void DS_DRAW_ITEM_BITMAP::PrintWsItem( const RENDER_SETTINGS* aSettings, const VECTOR2I& aOffset )
|
||||
{
|
||||
DS_DATA_ITEM_BITMAP* bitmap = (DS_DATA_ITEM_BITMAP*) GetPeer();
|
||||
|
||||
@ -456,7 +456,7 @@ const EDA_RECT DS_DRAW_ITEM_BITMAP::GetBoundingBox() const
|
||||
}
|
||||
|
||||
|
||||
bool DS_DRAW_ITEM_BITMAP::HitTest( const wxPoint& aPosition, int aAccuracy ) const
|
||||
bool DS_DRAW_ITEM_BITMAP::HitTest( const VECTOR2I& aPosition, int aAccuracy ) const
|
||||
{
|
||||
EDA_RECT bbox = GetBoundingBox();
|
||||
bbox.Inflate( aAccuracy );
|
||||
|
@ -135,7 +135,7 @@ void DS_PROXY_VIEW_ITEM::ViewGetLayers( int aLayers[], int& aCount ) const
|
||||
}
|
||||
|
||||
|
||||
bool DS_PROXY_VIEW_ITEM::HitTestDrawingSheetItems( VIEW* aView, const wxPoint& aPosition )
|
||||
bool DS_PROXY_VIEW_ITEM::HitTestDrawingSheetItems( VIEW* aView, const VECTOR2I& aPosition )
|
||||
{
|
||||
int accuracy = (int) aView->ToWorld( 5.0 ); // five pixels at current zoom
|
||||
DS_DRAW_ITEM_LIST drawList;
|
||||
|
@ -832,7 +832,7 @@ bool EDA_DRAW_FRAME::saveCanvasTypeSetting( EDA_DRAW_PANEL_GAL::GAL_TYPE aCanvas
|
||||
}
|
||||
|
||||
|
||||
wxPoint EDA_DRAW_FRAME::GetNearestGridPosition( const wxPoint& aPosition ) const
|
||||
VECTOR2I EDA_DRAW_FRAME::GetNearestGridPosition( const VECTOR2I& aPosition ) const
|
||||
{
|
||||
const VECTOR2I& gridOrigin = GetGridOrigin();
|
||||
VECTOR2D gridSize = GetCanvas()->GetGAL()->GetGridSize();
|
||||
@ -842,11 +842,11 @@ wxPoint EDA_DRAW_FRAME::GetNearestGridPosition( const wxPoint& aPosition ) const
|
||||
double yOffset = fmod( gridOrigin.y, gridSize.y );
|
||||
int y = KiROUND( (aPosition.y - yOffset) / gridSize.y );
|
||||
|
||||
return wxPoint( KiROUND( x * gridSize.x + xOffset ), KiROUND( y * gridSize.y + yOffset ) );
|
||||
return VECTOR2I( KiROUND( x * gridSize.x + xOffset ), KiROUND( y * gridSize.y + yOffset ) );
|
||||
}
|
||||
|
||||
|
||||
wxPoint EDA_DRAW_FRAME::GetNearestHalfGridPosition( const wxPoint& aPosition ) const
|
||||
VECTOR2I EDA_DRAW_FRAME::GetNearestHalfGridPosition( const VECTOR2I& aPosition ) const
|
||||
{
|
||||
const VECTOR2I& gridOrigin = GetGridOrigin();
|
||||
VECTOR2D gridSize = GetCanvas()->GetGAL()->GetGridSize() / 2.0;
|
||||
@ -856,7 +856,7 @@ wxPoint EDA_DRAW_FRAME::GetNearestHalfGridPosition( const wxPoint& aPosition ) c
|
||||
double yOffset = fmod( gridOrigin.y, gridSize.y );
|
||||
int y = KiROUND( (aPosition.y - yOffset) / gridSize.y );
|
||||
|
||||
return wxPoint( KiROUND( x * gridSize.x + xOffset ), KiROUND( y * gridSize.y + yOffset ) );
|
||||
return VECTOR2I( KiROUND( x * gridSize.x + xOffset ), KiROUND( y * gridSize.y + yOffset ) );
|
||||
}
|
||||
|
||||
|
||||
@ -893,7 +893,7 @@ std::vector<wxWindow*> EDA_DRAW_FRAME::findDialogs()
|
||||
}
|
||||
|
||||
|
||||
void EDA_DRAW_FRAME::FocusOnLocation( const wxPoint& aPos )
|
||||
void EDA_DRAW_FRAME::FocusOnLocation( const VECTOR2I& aPos )
|
||||
{
|
||||
bool centerView = false;
|
||||
BOX2D r = GetCanvas()->GetView()->GetViewport();
|
||||
@ -913,7 +913,7 @@ void EDA_DRAW_FRAME::FocusOnLocation( const wxPoint& aPos )
|
||||
}
|
||||
|
||||
// Center if we're behind an obscuring dialog, or within 10% of its edge
|
||||
for( BOX2D rect : dialogScreenRects )
|
||||
for( BOX2D rect : dialogScreenRects )
|
||||
{
|
||||
rect.Inflate( rect.GetWidth() / 10 );
|
||||
|
||||
|
@ -285,7 +285,7 @@ bool EDA_RECT::Intersects( const EDA_RECT& aRect, double aRot ) const
|
||||
}
|
||||
|
||||
|
||||
const wxPoint EDA_RECT::ClosestPointTo( const wxPoint& aPoint ) const
|
||||
const VECTOR2I EDA_RECT::ClosestPointTo( const VECTOR2I& aPoint ) const
|
||||
{
|
||||
EDA_RECT me( *this );
|
||||
|
||||
@ -295,11 +295,11 @@ const wxPoint EDA_RECT::ClosestPointTo( const wxPoint& aPoint ) const
|
||||
int nx = std::max( me.GetLeft(), std::min( aPoint.x, me.GetRight() ) );
|
||||
int ny = std::max( me.GetTop(), std::min( aPoint.y, me.GetBottom() ) );
|
||||
|
||||
return wxPoint( nx, ny );
|
||||
return VECTOR2I( nx, ny );
|
||||
}
|
||||
|
||||
|
||||
const wxPoint EDA_RECT::FarthestPointTo( const wxPoint& aPoint ) const
|
||||
const VECTOR2I EDA_RECT::FarthestPointTo( const VECTOR2I& aPoint ) const
|
||||
{
|
||||
EDA_RECT me( *this );
|
||||
|
||||
@ -308,16 +308,16 @@ const wxPoint EDA_RECT::FarthestPointTo( const wxPoint& aPoint ) const
|
||||
int fx = std::max( std::abs( aPoint.x - me.GetLeft() ), std::abs( aPoint.x - me.GetRight() ) );
|
||||
int fy = std::max( std::abs( aPoint.y - me.GetTop() ), std::abs( aPoint.y - me.GetBottom() ) );
|
||||
|
||||
return wxPoint( fx, fy );
|
||||
return VECTOR2I( fx, fy );
|
||||
}
|
||||
|
||||
|
||||
bool EDA_RECT::IntersectsCircle( const wxPoint& aCenter, const int aRadius ) const
|
||||
bool EDA_RECT::IntersectsCircle( const VECTOR2I& aCenter, const int aRadius ) const
|
||||
{
|
||||
if( !m_init )
|
||||
return false;
|
||||
|
||||
wxPoint closest = ClosestPointTo( aCenter );
|
||||
VECTOR2I closest = ClosestPointTo( aCenter );
|
||||
|
||||
double dx = static_cast<double>( aCenter.x ) - closest.x;
|
||||
double dy = static_cast<double>( aCenter.y ) - closest.y;
|
||||
@ -328,7 +328,7 @@ bool EDA_RECT::IntersectsCircle( const wxPoint& aCenter, const int aRadius ) con
|
||||
}
|
||||
|
||||
|
||||
bool EDA_RECT::IntersectsCircleEdge( const wxPoint& aCenter, const int aRadius,
|
||||
bool EDA_RECT::IntersectsCircleEdge( const VECTOR2I& aCenter, const int aRadius,
|
||||
const int aWidth ) const
|
||||
{
|
||||
if( !m_init )
|
||||
@ -343,7 +343,7 @@ bool EDA_RECT::IntersectsCircleEdge( const wxPoint& aCenter, const int aRadius,
|
||||
return false;
|
||||
}
|
||||
|
||||
wxPoint farpt = FarthestPointTo( aCenter );
|
||||
VECTOR2I farpt = FarthestPointTo( aCenter );
|
||||
// Farthest point must be further than the inside of the line
|
||||
double fx = (double) farpt.x;
|
||||
double fy = (double) farpt.y;
|
||||
@ -457,12 +457,12 @@ void EDA_RECT::Merge( const EDA_RECT& aRect )
|
||||
}
|
||||
|
||||
|
||||
void EDA_RECT::Merge( const wxPoint& aPoint )
|
||||
void EDA_RECT::Merge( const VECTOR2I& aPoint )
|
||||
{
|
||||
if( !m_init )
|
||||
{
|
||||
m_pos = aPoint;
|
||||
m_size = wxSize( 0, 0 );
|
||||
m_size = VECTOR2I( 0, 0 );
|
||||
m_init = true;
|
||||
return;
|
||||
}
|
||||
|
@ -87,18 +87,18 @@ wxString EDA_SHAPE::SHAPE_T_asString() const
|
||||
}
|
||||
|
||||
|
||||
void EDA_SHAPE::setPosition( const wxPoint& aPos )
|
||||
void EDA_SHAPE::setPosition( const VECTOR2I& aPos )
|
||||
{
|
||||
move( aPos - getPosition() );
|
||||
}
|
||||
|
||||
|
||||
wxPoint EDA_SHAPE::getPosition() const
|
||||
VECTOR2I EDA_SHAPE::getPosition() const
|
||||
{
|
||||
if( m_shape == SHAPE_T::ARC )
|
||||
return getCenter();
|
||||
else if( m_shape == SHAPE_T::POLY )
|
||||
return (wxPoint) m_poly.CVertex( 0 );
|
||||
return m_poly.CVertex( 0 );
|
||||
else
|
||||
return m_start;
|
||||
}
|
||||
@ -135,7 +135,7 @@ double EDA_SHAPE::GetLength() const
|
||||
}
|
||||
|
||||
|
||||
void EDA_SHAPE::move( const wxPoint& aMoveVector )
|
||||
void EDA_SHAPE::move( const VECTOR2I& aMoveVector )
|
||||
{
|
||||
switch ( m_shape )
|
||||
{
|
||||
@ -158,7 +158,7 @@ void EDA_SHAPE::move( const wxPoint& aMoveVector )
|
||||
m_bezierC1 += aMoveVector;
|
||||
m_bezierC2 += aMoveVector;
|
||||
|
||||
for( wxPoint& pt : m_bezierPoints)
|
||||
for( VECTOR2I& pt : m_bezierPoints )
|
||||
pt += aMoveVector;
|
||||
|
||||
break;
|
||||
@ -172,7 +172,7 @@ void EDA_SHAPE::move( const wxPoint& aMoveVector )
|
||||
|
||||
void EDA_SHAPE::scale( double aScale )
|
||||
{
|
||||
auto scalePt = [&]( wxPoint& pt )
|
||||
auto scalePt = [&]( VECTOR2I& pt )
|
||||
{
|
||||
pt.x = KiROUND( pt.x * aScale );
|
||||
pt.y = KiROUND( pt.y * aScale );
|
||||
@ -196,7 +196,7 @@ void EDA_SHAPE::scale( double aScale )
|
||||
|
||||
case SHAPE_T::POLY: // polygon
|
||||
{
|
||||
std::vector<wxPoint> pts;
|
||||
std::vector<VECTOR2I> pts;
|
||||
|
||||
for( const VECTOR2I& pt : m_poly.Outline( 0 ).CPoints() )
|
||||
{
|
||||
@ -222,27 +222,27 @@ void EDA_SHAPE::scale( double aScale )
|
||||
}
|
||||
|
||||
|
||||
void EDA_SHAPE::rotate( const wxPoint& aRotCentre, double aAngle )
|
||||
void EDA_SHAPE::rotate( const VECTOR2I& aRotCentre, double aAngle )
|
||||
{
|
||||
switch( m_shape )
|
||||
{
|
||||
case SHAPE_T::SEGMENT:
|
||||
case SHAPE_T::CIRCLE:
|
||||
RotatePoint( &m_start, aRotCentre, aAngle );
|
||||
RotatePoint( &m_end, aRotCentre, aAngle );
|
||||
RotatePoint( m_start, aRotCentre, aAngle );
|
||||
RotatePoint( m_end, aRotCentre, aAngle );
|
||||
break;
|
||||
|
||||
case SHAPE_T::ARC:
|
||||
RotatePoint( &m_start, aRotCentre, aAngle );
|
||||
RotatePoint( &m_end, aRotCentre, aAngle );
|
||||
RotatePoint( &m_arcCenter, aRotCentre, aAngle );
|
||||
RotatePoint( m_start, aRotCentre, aAngle );
|
||||
RotatePoint( m_end, aRotCentre, aAngle );
|
||||
RotatePoint( m_arcCenter, aRotCentre, aAngle );
|
||||
break;
|
||||
|
||||
case SHAPE_T::RECT:
|
||||
if( KiROUND( aAngle ) % 900 == 0 )
|
||||
{
|
||||
RotatePoint( &m_start, aRotCentre, aAngle );
|
||||
RotatePoint( &m_end, aRotCentre, aAngle );
|
||||
RotatePoint( m_start, aRotCentre, aAngle );
|
||||
RotatePoint( m_end, aRotCentre, aAngle );
|
||||
break;
|
||||
}
|
||||
|
||||
@ -262,13 +262,13 @@ void EDA_SHAPE::rotate( const wxPoint& aRotCentre, double aAngle )
|
||||
break;
|
||||
|
||||
case SHAPE_T::BEZIER:
|
||||
RotatePoint( &m_start, aRotCentre, aAngle);
|
||||
RotatePoint( &m_end, aRotCentre, aAngle);
|
||||
RotatePoint( &m_bezierC1, aRotCentre, aAngle);
|
||||
RotatePoint( &m_bezierC2, aRotCentre, aAngle);
|
||||
RotatePoint( m_start, aRotCentre, aAngle );
|
||||
RotatePoint( m_end, aRotCentre, aAngle );
|
||||
RotatePoint( m_bezierC1, aRotCentre, aAngle );
|
||||
RotatePoint( m_bezierC2, aRotCentre, aAngle );
|
||||
|
||||
for( wxPoint& pt : m_bezierPoints )
|
||||
RotatePoint( &pt, aRotCentre, aAngle);
|
||||
for( VECTOR2I& pt : m_bezierPoints )
|
||||
RotatePoint( pt, aRotCentre, aAngle);
|
||||
|
||||
break;
|
||||
|
||||
@ -279,7 +279,7 @@ void EDA_SHAPE::rotate( const wxPoint& aRotCentre, double aAngle )
|
||||
}
|
||||
|
||||
|
||||
void EDA_SHAPE::flip( const wxPoint& aCentre, bool aFlipLeftRight )
|
||||
void EDA_SHAPE::flip( const VECTOR2I& aCentre, bool aFlipLeftRight )
|
||||
{
|
||||
switch ( m_shape )
|
||||
{
|
||||
@ -330,7 +330,7 @@ void EDA_SHAPE::flip( const wxPoint& aCentre, bool aFlipLeftRight )
|
||||
break;
|
||||
|
||||
case SHAPE_T::POLY:
|
||||
m_poly.Mirror( aFlipLeftRight, !aFlipLeftRight, VECTOR2I( aCentre ) );
|
||||
m_poly.Mirror( aFlipLeftRight, !aFlipLeftRight, aCentre );
|
||||
break;
|
||||
|
||||
case SHAPE_T::BEZIER:
|
||||
@ -351,7 +351,7 @@ void EDA_SHAPE::flip( const wxPoint& aCentre, bool aFlipLeftRight )
|
||||
|
||||
// Rebuild the poly points shape
|
||||
{
|
||||
std::vector<wxPoint> ctrlPoints = { m_start, m_bezierC1, m_bezierC2, m_end };
|
||||
std::vector<VECTOR2I> ctrlPoints = { m_start, m_bezierC1, m_bezierC2, m_end };
|
||||
BEZIER_POLY converter( ctrlPoints );
|
||||
converter.GetPoly( m_bezierPoints, m_stroke.GetWidth() );
|
||||
}
|
||||
@ -378,12 +378,12 @@ void EDA_SHAPE::RebuildBezierToSegmentsPointsList( int aMinSegLen )
|
||||
}
|
||||
|
||||
|
||||
const std::vector<wxPoint> EDA_SHAPE::buildBezierToSegmentsPointsList( int aMinSegLen ) const
|
||||
const std::vector<VECTOR2I> EDA_SHAPE::buildBezierToSegmentsPointsList( int aMinSegLen ) const
|
||||
{
|
||||
std::vector<wxPoint> bezierPoints;
|
||||
std::vector<VECTOR2I> bezierPoints;
|
||||
|
||||
// Rebuild the m_BezierPoints vertex list that approximate the Bezier curve
|
||||
std::vector<wxPoint> ctrlPoints = { m_start, m_bezierC1, m_bezierC2, m_end };
|
||||
std::vector<VECTOR2I> ctrlPoints = { m_start, m_bezierC1, m_bezierC2, m_end };
|
||||
BEZIER_POLY converter( ctrlPoints );
|
||||
converter.GetPoly( bezierPoints, aMinSegLen );
|
||||
|
||||
@ -391,7 +391,7 @@ const std::vector<wxPoint> EDA_SHAPE::buildBezierToSegmentsPointsList( int aMinS
|
||||
}
|
||||
|
||||
|
||||
wxPoint EDA_SHAPE::getCenter() const
|
||||
VECTOR2I EDA_SHAPE::getCenter() const
|
||||
{
|
||||
switch( m_shape )
|
||||
{
|
||||
@ -408,16 +408,16 @@ wxPoint EDA_SHAPE::getCenter() const
|
||||
case SHAPE_T::POLY:
|
||||
case SHAPE_T::RECT:
|
||||
case SHAPE_T::BEZIER:
|
||||
return (wxPoint)getBoundingBox().Centre();
|
||||
return getBoundingBox().Centre();
|
||||
|
||||
default:
|
||||
UNIMPLEMENTED_FOR( SHAPE_T_asString() );
|
||||
return wxPoint();
|
||||
return VECTOR2I();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void EDA_SHAPE::SetCenter( const wxPoint& aCenter )
|
||||
void EDA_SHAPE::SetCenter( const VECTOR2I& aCenter )
|
||||
{
|
||||
switch( m_shape )
|
||||
{
|
||||
@ -435,10 +435,10 @@ void EDA_SHAPE::SetCenter( const wxPoint& aCenter )
|
||||
}
|
||||
|
||||
|
||||
wxPoint EDA_SHAPE::GetArcMid() const
|
||||
VECTOR2I EDA_SHAPE::GetArcMid() const
|
||||
{
|
||||
wxPoint mid = m_start;
|
||||
RotatePoint( &mid, m_arcCenter, -GetArcAngle() / 2.0 );
|
||||
VECTOR2I mid = m_start;
|
||||
RotatePoint( mid, m_arcCenter, -GetArcAngle() / 2.0 );
|
||||
return mid;
|
||||
}
|
||||
|
||||
@ -487,7 +487,7 @@ int EDA_SHAPE::GetRadius() const
|
||||
}
|
||||
|
||||
|
||||
void EDA_SHAPE::SetArcGeometry( const wxPoint& aStart, const wxPoint& aMid, const wxPoint& aEnd )
|
||||
void EDA_SHAPE::SetArcGeometry( const VECTOR2I& aStart, const VECTOR2I& aMid, const VECTOR2I& aEnd )
|
||||
{
|
||||
m_start = aStart;
|
||||
m_end = aEnd;
|
||||
@ -499,7 +499,7 @@ void EDA_SHAPE::SetArcGeometry( const wxPoint& aStart, const wxPoint& aMid, cons
|
||||
* on the other side of the arc. In this case, we need to flip the start/end points and flag this
|
||||
* change for the system
|
||||
*/
|
||||
wxPoint new_mid = GetArcMid();
|
||||
VECTOR2I new_mid = GetArcMid();
|
||||
VECTOR2D dist( new_mid - aMid );
|
||||
VECTOR2D dist2( new_mid - m_arcCenter );
|
||||
|
||||
@ -526,7 +526,7 @@ double EDA_SHAPE::GetArcAngle() const
|
||||
void EDA_SHAPE::SetArcAngleAndEnd( double aAngle, bool aCheckNegativeAngle )
|
||||
{
|
||||
m_end = m_start;
|
||||
RotatePoint( &m_end, m_arcCenter, -NormalizeAngle360Max( aAngle ) );
|
||||
RotatePoint( m_end, m_arcCenter, -NormalizeAngle360Max( aAngle ) );
|
||||
|
||||
if( aCheckNegativeAngle && aAngle < 0 )
|
||||
{
|
||||
@ -617,7 +617,7 @@ const EDA_RECT EDA_SHAPE::getBoundingBox() const
|
||||
switch( m_shape )
|
||||
{
|
||||
case SHAPE_T::RECT:
|
||||
for( wxPoint& pt : GetRectCorners() )
|
||||
for( VECTOR2I& pt : GetRectCorners() )
|
||||
bbox.Merge( pt );
|
||||
|
||||
break;
|
||||
@ -642,9 +642,9 @@ const EDA_RECT EDA_SHAPE::getBoundingBox() const
|
||||
|
||||
for( auto iter = m_poly.CIterate(); iter; iter++ )
|
||||
{
|
||||
wxPoint pt( iter->x, iter->y );
|
||||
VECTOR2I pt( iter->x, iter->y );
|
||||
|
||||
RotatePoint( &pt, getParentOrientation() );
|
||||
RotatePoint( pt, getParentOrientation() );
|
||||
pt += getParentPosition();
|
||||
|
||||
bbox.Merge( pt );
|
||||
@ -671,7 +671,7 @@ const EDA_RECT EDA_SHAPE::getBoundingBox() const
|
||||
}
|
||||
|
||||
|
||||
bool EDA_SHAPE::hitTest( const wxPoint& aPosition, int aAccuracy ) const
|
||||
bool EDA_SHAPE::hitTest( const VECTOR2I& aPosition, int aAccuracy ) const
|
||||
{
|
||||
int maxdist = aAccuracy;
|
||||
|
||||
@ -699,9 +699,9 @@ bool EDA_SHAPE::hitTest( const wxPoint& aPosition, int aAccuracy ) const
|
||||
if( EuclideanNorm( aPosition - m_end ) <= maxdist )
|
||||
return true;
|
||||
|
||||
wxPoint relPos = aPosition - getCenter();
|
||||
int radius = GetRadius();
|
||||
int dist = KiROUND( EuclideanNorm( relPos ) );
|
||||
VECTOR2I relPos = aPosition - getCenter();
|
||||
int radius = GetRadius();
|
||||
int dist = KiROUND( EuclideanNorm( relPos ) );
|
||||
|
||||
if( abs( radius - dist ) <= maxdist )
|
||||
{
|
||||
@ -747,14 +747,14 @@ bool EDA_SHAPE::hitTest( const wxPoint& aPosition, int aAccuracy ) const
|
||||
SHAPE_POLY_SET poly;
|
||||
poly.NewOutline();
|
||||
|
||||
for( const wxPoint& pt : GetRectCorners() )
|
||||
for( const VECTOR2I& pt : GetRectCorners() )
|
||||
poly.Append( pt );
|
||||
|
||||
return poly.Collide( VECTOR2I( aPosition ), maxdist );
|
||||
}
|
||||
else // Open rect hit-test
|
||||
{
|
||||
std::vector<wxPoint> pts = GetRectCorners();
|
||||
std::vector<VECTOR2I> pts = GetRectCorners();
|
||||
|
||||
return TestSegmentHit( aPosition, pts[0], pts[1], maxdist )
|
||||
|| TestSegmentHit( aPosition, pts[1], pts[2], maxdist )
|
||||
@ -836,7 +836,7 @@ bool EDA_SHAPE::hitTest( const EDA_RECT& aRect, bool aContained, int aAccuracy )
|
||||
}
|
||||
else
|
||||
{
|
||||
std::vector<wxPoint> pts = GetRectCorners();
|
||||
std::vector<VECTOR2I> pts = GetRectCorners();
|
||||
|
||||
// Account for the width of the lines
|
||||
arect.Inflate( GetWidth() / 2 );
|
||||
@ -877,7 +877,7 @@ bool EDA_SHAPE::hitTest( const EDA_RECT& aRect, bool aContained, int aAccuracy )
|
||||
// Therefore, instead of using m_poly, we make a copy which is translated
|
||||
// to the actual location in the board.
|
||||
double orientation = 0.0;
|
||||
wxPoint offset = getParentPosition();
|
||||
VECTOR2I offset = getParentPosition();
|
||||
|
||||
if( getParentOrientation() )
|
||||
orientation = -DECIDEG2RAD( getParentOrientation() );
|
||||
@ -893,7 +893,7 @@ bool EDA_SHAPE::hitTest( const EDA_RECT& aRect, bool aContained, int aAccuracy )
|
||||
VECTOR2I vertex = poly.GetPoint( ii );
|
||||
|
||||
// Test if the point is within aRect
|
||||
if( arect.Contains( ( wxPoint ) vertex ) )
|
||||
if( arect.Contains( vertex ) )
|
||||
return true;
|
||||
|
||||
if( ii + 1 < count )
|
||||
@ -901,7 +901,7 @@ bool EDA_SHAPE::hitTest( const EDA_RECT& aRect, bool aContained, int aAccuracy )
|
||||
VECTOR2I vertexNext = poly.GetPoint( ii + 1 );
|
||||
|
||||
// Test if this edge intersects aRect
|
||||
if( arect.Intersects( ( wxPoint ) vertex, ( wxPoint ) vertexNext ) )
|
||||
if( arect.Intersects( vertex, vertexNext ) )
|
||||
return true;
|
||||
}
|
||||
else if( poly.IsClosed() )
|
||||
@ -909,7 +909,7 @@ bool EDA_SHAPE::hitTest( const EDA_RECT& aRect, bool aContained, int aAccuracy )
|
||||
VECTOR2I vertexNext = poly.GetPoint( 0 );
|
||||
|
||||
// Test if this edge intersects aRect
|
||||
if( arect.Intersects( ( wxPoint ) vertex, ( wxPoint ) vertexNext ) )
|
||||
if( arect.Intersects( vertex, vertexNext ) )
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@ -935,11 +935,11 @@ bool EDA_SHAPE::hitTest( const EDA_RECT& aRect, bool aContained, int aAccuracy )
|
||||
|
||||
for( unsigned ii = 1; ii < count; ii++ )
|
||||
{
|
||||
wxPoint vertex = m_bezierPoints[ ii - 1];
|
||||
wxPoint vertexNext = m_bezierPoints[ii];
|
||||
VECTOR2I vertex = m_bezierPoints[ii - 1];
|
||||
VECTOR2I vertexNext = m_bezierPoints[ii];
|
||||
|
||||
// Test if the point is within aRect
|
||||
if( arect.Contains( ( wxPoint ) vertex ) )
|
||||
if( arect.Contains( vertex ) )
|
||||
return true;
|
||||
|
||||
// Test if this edge intersects aRect
|
||||
@ -957,20 +957,20 @@ bool EDA_SHAPE::hitTest( const EDA_RECT& aRect, bool aContained, int aAccuracy )
|
||||
}
|
||||
|
||||
|
||||
std::vector<wxPoint> EDA_SHAPE::GetRectCorners() const
|
||||
std::vector<VECTOR2I> EDA_SHAPE::GetRectCorners() const
|
||||
{
|
||||
std::vector<wxPoint> pts;
|
||||
wxPoint topLeft = GetStart();
|
||||
wxPoint botRight = GetEnd();
|
||||
std::vector<VECTOR2I> pts;
|
||||
VECTOR2I topLeft = GetStart();
|
||||
VECTOR2I botRight = GetEnd();
|
||||
|
||||
// Un-rotate rect topLeft and botRight
|
||||
if( KiROUND( getParentOrientation() ) % 900 != 0 )
|
||||
{
|
||||
topLeft -= getParentPosition();
|
||||
RotatePoint( &topLeft, -getParentOrientation() );
|
||||
RotatePoint( topLeft, -getParentOrientation() );
|
||||
|
||||
botRight -= getParentPosition();
|
||||
RotatePoint( &botRight, -getParentOrientation() );
|
||||
RotatePoint( botRight, -getParentOrientation() );
|
||||
}
|
||||
|
||||
// Set up the un-rotated 4 corners
|
||||
@ -982,9 +982,9 @@ std::vector<wxPoint> EDA_SHAPE::GetRectCorners() const
|
||||
// Now re-rotate the 4 corners to get a diamond
|
||||
if( KiROUND( getParentOrientation() ) % 900 != 0 )
|
||||
{
|
||||
for( wxPoint& pt : pts )
|
||||
for( VECTOR2I& pt : pts )
|
||||
{
|
||||
RotatePoint( &pt, getParentOrientation() );
|
||||
RotatePoint( pt, getParentOrientation() );
|
||||
pt += getParentPosition();
|
||||
}
|
||||
}
|
||||
@ -995,8 +995,8 @@ std::vector<wxPoint> EDA_SHAPE::GetRectCorners() const
|
||||
|
||||
void EDA_SHAPE::computeArcBBox( EDA_RECT& aBBox ) const
|
||||
{
|
||||
wxPoint start = m_start;
|
||||
wxPoint end = m_end;
|
||||
VECTOR2I start = m_start;
|
||||
VECTOR2I end = m_end;
|
||||
double t1, t2;
|
||||
|
||||
CalcArcAngles( t1, t2 );
|
||||
@ -1049,10 +1049,10 @@ void EDA_SHAPE::computeArcBBox( EDA_RECT& aBBox ) const
|
||||
{
|
||||
switch( quarter )
|
||||
{
|
||||
case 0: aBBox.Merge( wxPoint( m_arcCenter.x, m_arcCenter.y + radius ) ); break; // down
|
||||
case 1: aBBox.Merge( wxPoint( m_arcCenter.x - radius, m_arcCenter.y ) ); break; // left
|
||||
case 2: aBBox.Merge( wxPoint( m_arcCenter.x, m_arcCenter.y - radius ) ); break; // up
|
||||
case 3: aBBox.Merge( wxPoint( m_arcCenter.x + radius, m_arcCenter.y ) ); break; // right
|
||||
case 0: aBBox.Merge( VECTOR2I( m_arcCenter.x, m_arcCenter.y + radius ) ); break; // down
|
||||
case 1: aBBox.Merge( VECTOR2I( m_arcCenter.x - radius, m_arcCenter.y ) ); break; // left
|
||||
case 2: aBBox.Merge( VECTOR2I( m_arcCenter.x, m_arcCenter.y - radius ) ); break; // up
|
||||
case 3: aBBox.Merge( VECTOR2I( m_arcCenter.x + radius, m_arcCenter.y ) ); break; // right
|
||||
}
|
||||
|
||||
++quarter %= 4;
|
||||
@ -1061,12 +1061,12 @@ void EDA_SHAPE::computeArcBBox( EDA_RECT& aBBox ) const
|
||||
}
|
||||
|
||||
|
||||
void EDA_SHAPE::SetPolyPoints( const std::vector<wxPoint>& aPoints )
|
||||
void EDA_SHAPE::SetPolyPoints( const std::vector<VECTOR2I>& aPoints )
|
||||
{
|
||||
m_poly.RemoveAllContours();
|
||||
m_poly.NewOutline();
|
||||
|
||||
for ( const wxPoint& p : aPoints )
|
||||
for( const VECTOR2I& p : aPoints )
|
||||
m_poly.Append( p.x, p.y );
|
||||
}
|
||||
|
||||
@ -1088,7 +1088,7 @@ std::vector<SHAPE*> EDA_SHAPE::MakeEffectiveShapes( bool aEdgeOnly ) const
|
||||
|
||||
case SHAPE_T::RECT:
|
||||
{
|
||||
std::vector<wxPoint> pts = GetRectCorners();
|
||||
std::vector<VECTOR2I> pts = GetRectCorners();
|
||||
|
||||
if( IsFilled() && !aEdgeOnly )
|
||||
effectiveShapes.emplace_back( new SHAPE_SIMPLE( pts ) );
|
||||
@ -1116,12 +1116,12 @@ std::vector<SHAPE*> EDA_SHAPE::MakeEffectiveShapes( bool aEdgeOnly ) const
|
||||
|
||||
case SHAPE_T::BEZIER:
|
||||
{
|
||||
std::vector<wxPoint> bezierPoints = buildBezierToSegmentsPointsList( GetWidth() );
|
||||
wxPoint start_pt = bezierPoints[0];
|
||||
std::vector<VECTOR2I> bezierPoints = buildBezierToSegmentsPointsList( GetWidth() );
|
||||
VECTOR2I start_pt = bezierPoints[0];
|
||||
|
||||
for( unsigned int jj = 1; jj < bezierPoints.size(); jj++ )
|
||||
{
|
||||
wxPoint end_pt = bezierPoints[jj];
|
||||
VECTOR2I end_pt = bezierPoints[jj];
|
||||
effectiveShapes.emplace_back( new SHAPE_SEGMENT( start_pt, end_pt, GetWidth() ) );
|
||||
start_pt = end_pt;
|
||||
}
|
||||
@ -1156,7 +1156,7 @@ std::vector<SHAPE*> EDA_SHAPE::MakeEffectiveShapes( bool aEdgeOnly ) const
|
||||
}
|
||||
|
||||
|
||||
void EDA_SHAPE::DupPolyPointsList( std::vector<wxPoint>& aBuffer ) const
|
||||
void EDA_SHAPE::DupPolyPointsList( std::vector<VECTOR2I>& aBuffer ) const
|
||||
{
|
||||
if( m_poly.OutlineCount() )
|
||||
{
|
||||
@ -1196,7 +1196,7 @@ int EDA_SHAPE::GetPointCount() const
|
||||
}
|
||||
|
||||
|
||||
void EDA_SHAPE::beginEdit( const wxPoint& aPosition )
|
||||
void EDA_SHAPE::beginEdit( const VECTOR2I& aPosition )
|
||||
{
|
||||
switch( GetShape() )
|
||||
{
|
||||
@ -1227,7 +1227,7 @@ void EDA_SHAPE::beginEdit( const wxPoint& aPosition )
|
||||
}
|
||||
|
||||
|
||||
bool EDA_SHAPE::continueEdit( const wxPoint& aPosition )
|
||||
bool EDA_SHAPE::continueEdit( const VECTOR2I& aPosition )
|
||||
{
|
||||
switch( GetShape() )
|
||||
{
|
||||
@ -1254,7 +1254,7 @@ bool EDA_SHAPE::continueEdit( const wxPoint& aPosition )
|
||||
}
|
||||
|
||||
|
||||
void EDA_SHAPE::calcEdit( const wxPoint& aPosition )
|
||||
void EDA_SHAPE::calcEdit( const VECTOR2I& aPosition )
|
||||
{
|
||||
#define sq( x ) pow( x, 2 )
|
||||
|
||||
@ -1291,7 +1291,7 @@ void EDA_SHAPE::calcEdit( const wxPoint& aPosition )
|
||||
case 2:
|
||||
case 3:
|
||||
{
|
||||
wxPoint v = m_start - m_end;
|
||||
VECTOR2I v = m_start - m_end;
|
||||
double chordBefore = sq( v.x ) + sq( v.y );
|
||||
|
||||
if( m_editState == 2 )
|
||||
@ -1328,15 +1328,15 @@ void EDA_SHAPE::calcEdit( const wxPoint& aPosition )
|
||||
//
|
||||
// Let 'l' be the length of the chord and 'm' the middle point of the chord
|
||||
double l = GetLineLength( m_start, m_end );
|
||||
wxPoint m = ( m_start + m_end ) / 2;
|
||||
VECTOR2I m = ( m_start + m_end ) / 2;
|
||||
|
||||
// Calculate 'd', the vector from the chord midpoint to the center
|
||||
wxPoint d;
|
||||
VECTOR2I d;
|
||||
d.x = KiROUND( sqrt( sq( radius ) - sq( l/2 ) ) * ( m_start.y - m_end.y ) / l );
|
||||
d.y = KiROUND( sqrt( sq( radius ) - sq( l/2 ) ) * ( m_end.x - m_start.x ) / l );
|
||||
|
||||
wxPoint c1 = m + d;
|
||||
wxPoint c2 = m - d;
|
||||
VECTOR2I c1 = m + d;
|
||||
VECTOR2I c2 = m - d;
|
||||
|
||||
// Solution gives us 2 centers; we need to pick one:
|
||||
switch( m_editState )
|
||||
@ -1344,12 +1344,12 @@ void EDA_SHAPE::calcEdit( const wxPoint& aPosition )
|
||||
case 1:
|
||||
{
|
||||
// Keep center clockwise from chord while drawing
|
||||
wxPoint chordVector = m_end - m_start;
|
||||
VECTOR2I chordVector = m_end - m_start;
|
||||
double chordAngle = ArcTangente( chordVector.y, chordVector.x );
|
||||
NORMALIZE_ANGLE_POS( chordAngle );
|
||||
|
||||
wxPoint c1Test = c1;
|
||||
RotatePoint( &c1Test, m_start, -chordAngle );
|
||||
VECTOR2I c1Test = c1;
|
||||
RotatePoint( c1Test, m_start, -chordAngle );
|
||||
|
||||
m_arcCenter = c1Test.x > 0 ? c2 : c1;
|
||||
}
|
||||
@ -1500,13 +1500,13 @@ void EDA_SHAPE::TransformShapeWithClearanceToPolygon( SHAPE_POLY_SET& aCornerBuf
|
||||
|
||||
case SHAPE_T::RECT:
|
||||
{
|
||||
std::vector<wxPoint> pts = GetRectCorners();
|
||||
std::vector<VECTOR2I> pts = GetRectCorners();
|
||||
|
||||
if( IsFilled() )
|
||||
{
|
||||
aCornerBuffer.NewOutline();
|
||||
|
||||
for( const wxPoint& pt : pts )
|
||||
for( const VECTOR2I& pt : pts )
|
||||
aCornerBuffer.Append( pt );
|
||||
}
|
||||
|
||||
@ -1538,15 +1538,15 @@ void EDA_SHAPE::TransformShapeWithClearanceToPolygon( SHAPE_POLY_SET& aCornerBuf
|
||||
|
||||
// The polygon is expected to be a simple polygon; not self intersecting, no hole.
|
||||
double orientation = getParentOrientation();
|
||||
wxPoint offset = getParentPosition();
|
||||
VECTOR2I offset = getParentPosition();
|
||||
|
||||
// Build the polygon with the actual position and orientation:
|
||||
std::vector<wxPoint> poly;
|
||||
std::vector<VECTOR2I> poly;
|
||||
DupPolyPointsList( poly );
|
||||
|
||||
for( wxPoint& point : poly )
|
||||
for( VECTOR2I& point : poly )
|
||||
{
|
||||
RotatePoint( &point, orientation );
|
||||
RotatePoint( point, orientation );
|
||||
point += offset;
|
||||
}
|
||||
|
||||
@ -1554,15 +1554,15 @@ void EDA_SHAPE::TransformShapeWithClearanceToPolygon( SHAPE_POLY_SET& aCornerBuf
|
||||
{
|
||||
aCornerBuffer.NewOutline();
|
||||
|
||||
for( const wxPoint& point : poly )
|
||||
for( const VECTOR2I& point : poly )
|
||||
aCornerBuffer.Append( point.x, point.y );
|
||||
}
|
||||
|
||||
if( width > 0 || !IsFilled() )
|
||||
{
|
||||
wxPoint pt1( poly[ poly.size() - 1] );
|
||||
VECTOR2I pt1( poly[poly.size() - 1] );
|
||||
|
||||
for( const wxPoint& pt2 : poly )
|
||||
for( const VECTOR2I& pt2 : poly )
|
||||
{
|
||||
if( pt2 != pt1 )
|
||||
TransformOvalToPolygon( aCornerBuffer, pt1, pt2, width, aError, aErrorLoc );
|
||||
@ -1576,9 +1576,9 @@ void EDA_SHAPE::TransformShapeWithClearanceToPolygon( SHAPE_POLY_SET& aCornerBuf
|
||||
|
||||
case SHAPE_T::BEZIER:
|
||||
{
|
||||
std::vector<wxPoint> ctrlPts = { GetStart(), GetBezierC1(), GetBezierC2(), GetEnd() };
|
||||
std::vector<VECTOR2I> ctrlPts = { GetStart(), GetBezierC1(), GetBezierC2(), GetEnd() };
|
||||
BEZIER_POLY converter( ctrlPts );
|
||||
std::vector< wxPoint> poly;
|
||||
std::vector<VECTOR2I> poly;
|
||||
converter.GetPoly( poly, GetWidth() );
|
||||
|
||||
for( unsigned ii = 1; ii < poly.size(); ii++ )
|
||||
|
@ -65,7 +65,7 @@ class wxFindReplaceData;
|
||||
void addTextSegmToPoly( int x0, int y0, int xf, int yf, void* aData )
|
||||
{
|
||||
TSEGM_2_POLY_PRMS* prm = static_cast<TSEGM_2_POLY_PRMS*>( aData );
|
||||
TransformOvalToPolygon( *prm->m_cornerBuffer, wxPoint( x0, y0 ), wxPoint( xf, yf ),
|
||||
TransformOvalToPolygon( *prm->m_cornerBuffer, VECTOR2I( x0, y0 ), VECTOR2I( xf, yf ),
|
||||
prm->m_textWidth, prm->m_error, ERROR_INSIDE );
|
||||
}
|
||||
|
||||
@ -304,7 +304,7 @@ EDA_RECT EDA_TEXT::GetTextBox( int aLine, bool aInvertY ) const
|
||||
|
||||
extra_height += thickness / 2;
|
||||
textsize.y += extra_height;
|
||||
rect.Move( wxPoint( 0, -extra_height ) );
|
||||
rect.Move( VECTOR2I( 0, -extra_height ) );
|
||||
}
|
||||
|
||||
// for multiline texts and aLine < 0, merge all rectangles
|
||||
@ -391,7 +391,7 @@ EDA_RECT EDA_TEXT::GetTextBox( int aLine, bool aInvertY ) const
|
||||
}
|
||||
|
||||
|
||||
bool EDA_TEXT::TextHitTest( const wxPoint& aPoint, int aAccuracy ) const
|
||||
bool EDA_TEXT::TextHitTest( const VECTOR2I& aPoint, int aAccuracy ) const
|
||||
{
|
||||
EDA_RECT rect = GetTextBox();
|
||||
VECTOR2I location = aPoint;
|
||||
@ -416,12 +416,12 @@ bool EDA_TEXT::TextHitTest( const EDA_RECT& aRect, bool aContains, int aAccuracy
|
||||
}
|
||||
|
||||
|
||||
void EDA_TEXT::Print( const RENDER_SETTINGS* aSettings, const wxPoint& aOffset,
|
||||
void EDA_TEXT::Print( const RENDER_SETTINGS* aSettings, const VECTOR2I& aOffset,
|
||||
const COLOR4D& aColor, OUTLINE_MODE aFillMode )
|
||||
{
|
||||
if( IsMultilineAllowed() )
|
||||
{
|
||||
std::vector<wxPoint> positions;
|
||||
std::vector<VECTOR2I> positions;
|
||||
wxArrayString strings;
|
||||
wxStringSplit( GetShownText(), strings, '\n' );
|
||||
|
||||
@ -439,12 +439,12 @@ void EDA_TEXT::Print( const RENDER_SETTINGS* aSettings, const wxPoint& aOffset,
|
||||
}
|
||||
|
||||
|
||||
void EDA_TEXT::GetLinePositions( std::vector<wxPoint>& aPositions, int aLineCount ) const
|
||||
void EDA_TEXT::GetLinePositions( std::vector<VECTOR2I>& aPositions, int aLineCount ) const
|
||||
{
|
||||
VECTOR2I pos = GetTextPos(); // Position of first line of the multiline text according
|
||||
// to the center of the multiline text block
|
||||
VECTOR2I pos = GetTextPos(); // Position of first line of the multiline text according
|
||||
// to the center of the multiline text block
|
||||
|
||||
wxPoint offset; // Offset to next line.
|
||||
VECTOR2I offset; // Offset to next line.
|
||||
|
||||
offset.y = GetInterline();
|
||||
|
||||
@ -469,11 +469,11 @@ void EDA_TEXT::GetLinePositions( std::vector<wxPoint>& aPositions, int aLineCoun
|
||||
RotatePoint( pos, GetTextPos(), GetTextAngle() );
|
||||
|
||||
// Rotate the offset lines to increase happened in the right direction
|
||||
RotatePoint( &offset, GetTextAngle() );
|
||||
RotatePoint( offset, GetTextAngle() );
|
||||
|
||||
for( int ii = 0; ii < aLineCount; ii++ )
|
||||
{
|
||||
aPositions.push_back( (wxPoint) pos );
|
||||
aPositions.push_back( (VECTOR2I) pos );
|
||||
pos += offset;
|
||||
}
|
||||
}
|
||||
@ -599,21 +599,21 @@ void EDA_TEXT::Format( OUTPUTFORMATTER* aFormatter, int aNestLevel, int aControl
|
||||
}
|
||||
|
||||
// Convert the text shape to a list of segment
|
||||
// each segment is stored as 2 wxPoints: its starting point and its ending point
|
||||
// each segment is stored as 2 VECTOR2Is: its starting point and its ending point
|
||||
// we are using GRText to create the segments and therefore a call-back function is needed
|
||||
|
||||
// This is a call back function, used by GRText to put each segment in buffer
|
||||
static void addTextSegmToBuffer( int x0, int y0, int xf, int yf, void* aData )
|
||||
{
|
||||
std::vector<wxPoint>* cornerBuffer = static_cast<std::vector<wxPoint>*>( aData );
|
||||
cornerBuffer->push_back( wxPoint( x0, y0 ) );
|
||||
cornerBuffer->push_back( wxPoint( xf, yf ) );
|
||||
std::vector<VECTOR2I>* cornerBuffer = static_cast<std::vector<VECTOR2I>*>( aData );
|
||||
cornerBuffer->push_back( VECTOR2I( x0, y0 ) );
|
||||
cornerBuffer->push_back( VECTOR2I( xf, yf ) );
|
||||
}
|
||||
|
||||
|
||||
std::vector<wxPoint> EDA_TEXT::TransformToSegmentList() const
|
||||
std::vector<VECTOR2I> EDA_TEXT::TransformToSegmentList() const
|
||||
{
|
||||
std::vector<wxPoint> cornerBuffer;
|
||||
std::vector<VECTOR2I> cornerBuffer;
|
||||
wxSize size = GetTextSize();
|
||||
|
||||
if( IsMirrored() )
|
||||
@ -628,7 +628,7 @@ std::vector<wxPoint> EDA_TEXT::TransformToSegmentList() const
|
||||
{
|
||||
wxArrayString strings_list;
|
||||
wxStringSplit( GetShownText(), strings_list, wxChar('\n') );
|
||||
std::vector<wxPoint> positions;
|
||||
std::vector<VECTOR2I> positions;
|
||||
positions.reserve( strings_list.Count() );
|
||||
GetLinePositions( positions, strings_list.Count() );
|
||||
|
||||
@ -654,8 +654,8 @@ std::vector<wxPoint> EDA_TEXT::TransformToSegmentList() const
|
||||
std::shared_ptr<SHAPE_COMPOUND> EDA_TEXT::GetEffectiveTextShape( ) const
|
||||
{
|
||||
std::shared_ptr<SHAPE_COMPOUND> shape = std::make_shared<SHAPE_COMPOUND>();
|
||||
int penWidth = GetEffectiveTextPenWidth();
|
||||
std::vector<wxPoint> pts = TransformToSegmentList();
|
||||
int penWidth = GetEffectiveTextPenWidth();
|
||||
std::vector<VECTOR2I> pts = TransformToSegmentList();
|
||||
|
||||
for( unsigned jj = 0; jj < pts.size(); jj += 2 )
|
||||
shape->AddShape( new SHAPE_SEGMENT( pts[jj], pts[jj+1], penWidth ) );
|
||||
|
@ -63,7 +63,7 @@ static const bool NOT_FILLED = false;
|
||||
GR_DRAWMODE g_XorMode = GR_NXOR;
|
||||
|
||||
|
||||
static void ClipAndDrawPoly( EDA_RECT* ClipBox, wxDC* DC, const wxPoint* Points, int n );
|
||||
static void ClipAndDrawPoly( EDA_RECT* ClipBox, wxDC* DC, const VECTOR2I* Points, int n );
|
||||
|
||||
/* These functions are used by corresponding functions
|
||||
* ( GRSCircle is called by GRCircle for instance) after mapping coordinates
|
||||
@ -204,8 +204,8 @@ void GRLine( EDA_RECT* ClipBox, wxDC* DC, int x1, int y1, int x2, int y2, int wi
|
||||
}
|
||||
|
||||
|
||||
void GRLine( EDA_RECT* aClipBox, wxDC* aDC, const wxPoint& aStart, const wxPoint& aEnd, int aWidth,
|
||||
const COLOR4D& aColor, wxPenStyle aStyle )
|
||||
void GRLine( EDA_RECT* aClipBox, wxDC* aDC, const VECTOR2I& aStart, const VECTOR2I& aEnd,
|
||||
int aWidth, const COLOR4D& aColor, wxPenStyle aStyle )
|
||||
{
|
||||
GRLine( aClipBox, aDC, aStart.x, aStart.y, aEnd.x, aEnd.y, aWidth, aColor, aStyle );
|
||||
}
|
||||
@ -315,8 +315,8 @@ void GRCSegm( EDA_RECT* ClipBox, wxDC* DC, int x1, int y1, int x2, int y2, int w
|
||||
}
|
||||
|
||||
|
||||
void GRCSegm( EDA_RECT* aClipBox, wxDC* aDC, const wxPoint& aStart, const wxPoint& aEnd, int aWidth,
|
||||
const COLOR4D& aColor )
|
||||
void GRCSegm( EDA_RECT* aClipBox, wxDC* aDC, const VECTOR2I& aStart, const VECTOR2I& aEnd,
|
||||
int aWidth, const COLOR4D& aColor )
|
||||
{
|
||||
GRCSegm( aClipBox, aDC, aStart.x, aStart.y, aEnd.x, aEnd.y, aWidth, 0, aColor );
|
||||
}
|
||||
@ -330,14 +330,14 @@ void GRFillCSegm( EDA_RECT* ClipBox, wxDC* DC, int x1, int y1, int x2, int y2, i
|
||||
}
|
||||
|
||||
|
||||
void GRFilledSegment( EDA_RECT* aClipBox, wxDC* aDC, const wxPoint& aStart, const wxPoint& aEnd,
|
||||
void GRFilledSegment( EDA_RECT* aClipBox, wxDC* aDC, const VECTOR2I& aStart, const VECTOR2I& aEnd,
|
||||
int aWidth, const COLOR4D& aColor )
|
||||
{
|
||||
GRSetColorPen( aDC, aColor, aWidth );
|
||||
WinClipAndDrawLine( aClipBox, aDC, aStart.x, aStart.y, aEnd.x, aEnd.y, aWidth );
|
||||
}
|
||||
|
||||
static bool IsGRSPolyDrawable( EDA_RECT* ClipBox, int n, const wxPoint* Points )
|
||||
static bool IsGRSPolyDrawable( EDA_RECT* ClipBox, int n, const VECTOR2I* Points )
|
||||
{
|
||||
if( !ClipBox )
|
||||
return true;
|
||||
@ -379,7 +379,7 @@ static bool IsGRSPolyDrawable( EDA_RECT* ClipBox, int n, const wxPoint* Points )
|
||||
/**
|
||||
* Draw a new polyline and fill it if Fill, in screen space.
|
||||
*/
|
||||
static void GRSPoly( EDA_RECT* ClipBox, wxDC* DC, int n, const wxPoint* Points, bool Fill,
|
||||
static void GRSPoly( EDA_RECT* ClipBox, wxDC* DC, int n, const VECTOR2I* Points, bool Fill,
|
||||
int width, const COLOR4D& Color, const COLOR4D& BgColor )
|
||||
{
|
||||
if( !IsGRSPolyDrawable( ClipBox, n, Points ) )
|
||||
@ -412,7 +412,7 @@ static void GRSPoly( EDA_RECT* ClipBox, wxDC* DC, int n, const wxPoint* Points,
|
||||
/**
|
||||
* Draw a new closed polyline and fill it if Fill, in screen space.
|
||||
*/
|
||||
static void GRSClosedPoly( EDA_RECT* aClipBox, wxDC* aDC, int aPointCount, const wxPoint* aPoints,
|
||||
static void GRSClosedPoly( EDA_RECT* aClipBox, wxDC* aDC, int aPointCount, const VECTOR2I* aPoints,
|
||||
bool aFill, int aWidth, const COLOR4D& aColor, const COLOR4D& aBgColor )
|
||||
{
|
||||
if( !IsGRSPolyDrawable( aClipBox, aPointCount, aPoints ) )
|
||||
@ -450,7 +450,7 @@ static void GRSClosedPoly( EDA_RECT* aClipBox, wxDC* aDC, int aPointCount, const
|
||||
/**
|
||||
* Draw a new polyline and fill it if Fill, in drawing space.
|
||||
*/
|
||||
void GRPoly( EDA_RECT* ClipBox, wxDC* DC, int n, const wxPoint* Points, bool Fill, int width,
|
||||
void GRPoly( EDA_RECT* ClipBox, wxDC* DC, int n, const VECTOR2I* Points, bool Fill, int width,
|
||||
const COLOR4D& Color, const COLOR4D& BgColor )
|
||||
{
|
||||
GRSPoly( ClipBox, DC, n, Points, Fill, width, Color, BgColor );
|
||||
@ -460,14 +460,14 @@ void GRPoly( EDA_RECT* ClipBox, wxDC* DC, int n, const wxPoint* Points, bool Fil
|
||||
/**
|
||||
* Draw a closed polyline and fill it if Fill, in object space.
|
||||
*/
|
||||
void GRClosedPoly( EDA_RECT* ClipBox, wxDC* DC, int n, const wxPoint* Points, bool Fill,
|
||||
void GRClosedPoly( EDA_RECT* ClipBox, wxDC* DC, int n, const VECTOR2I* Points, bool Fill,
|
||||
const COLOR4D& Color, const COLOR4D& BgColor )
|
||||
{
|
||||
GRClosedPoly( ClipBox, DC, n, Points, Fill, 0, Color, BgColor );
|
||||
}
|
||||
|
||||
|
||||
void GRClosedPoly( EDA_RECT* ClipBox, wxDC* DC, int n, const wxPoint* Points, bool Fill, int width,
|
||||
void GRClosedPoly( EDA_RECT* ClipBox, wxDC* DC, int n, const VECTOR2I* Points, bool Fill, int width,
|
||||
const COLOR4D& Color, const COLOR4D& BgColor )
|
||||
{
|
||||
GRSClosedPoly( ClipBox, DC, n, Points, Fill, width, Color, BgColor );
|
||||
@ -515,7 +515,7 @@ void GRCircle( EDA_RECT* ClipBox, wxDC* DC, int xc, int yc, int r, int width, co
|
||||
}
|
||||
|
||||
|
||||
void GRCircle( EDA_RECT* aClipBox, wxDC* aDC, const wxPoint& aPos, int aRadius, int aWidth,
|
||||
void GRCircle( EDA_RECT* aClipBox, wxDC* aDC, const VECTOR2I& aPos, int aRadius, int aWidth,
|
||||
const COLOR4D& aColor )
|
||||
{
|
||||
GRCircle( aClipBox, aDC, aPos.x, aPos.y, aRadius, aWidth, aColor );
|
||||
@ -534,7 +534,7 @@ void GRFilledCircle( EDA_RECT* ClipBox, wxDC* DC, int x, int y, int r, int width
|
||||
}
|
||||
|
||||
|
||||
void GRFilledCircle( EDA_RECT* aClipBox, wxDC* aDC, const wxPoint& aPos, int aRadius,
|
||||
void GRFilledCircle( EDA_RECT* aClipBox, wxDC* aDC, const VECTOR2I& aPos, int aRadius,
|
||||
const COLOR4D& aColor )
|
||||
{
|
||||
GRFilledCircle( aClipBox, aDC, aPos.x, aPos.y, aRadius, 0, aColor, aColor );
|
||||
@ -573,16 +573,17 @@ void GRArc1( EDA_RECT* ClipBox, wxDC* DC, int x1, int y1, int x2, int y2, int xc
|
||||
}
|
||||
|
||||
|
||||
void GRArc1( EDA_RECT* aClipBox, wxDC* aDC, const wxPoint& aStart, const wxPoint& aEnd,
|
||||
const wxPoint& aCenter, int aWidth, const COLOR4D& aColor )
|
||||
void GRArc1( EDA_RECT* aClipBox, wxDC* aDC, const VECTOR2I& aStart, const VECTOR2I& aEnd,
|
||||
const VECTOR2I& aCenter, int aWidth, const COLOR4D& aColor )
|
||||
{
|
||||
GRArc1( aClipBox, aDC, aStart.x, aStart.y, aEnd.x, aEnd.y, aCenter.x, aCenter.y,
|
||||
aWidth, aColor );
|
||||
}
|
||||
|
||||
|
||||
void GRFilledArc1( EDA_RECT* ClipBox, wxDC* DC, const wxPoint& aStart, const wxPoint& aEnd,
|
||||
const wxPoint& aCenter, int width, const COLOR4D& Color, const COLOR4D& BgColor )
|
||||
void GRFilledArc1( EDA_RECT* ClipBox, wxDC* DC, const VECTOR2I& aStart, const VECTOR2I& aEnd,
|
||||
const VECTOR2I& aCenter, int width, const COLOR4D& Color,
|
||||
const COLOR4D& BgColor )
|
||||
{
|
||||
/* Clip arcs off screen. */
|
||||
if( ClipBox )
|
||||
@ -722,11 +723,11 @@ void GRFilledRect( EDA_RECT* ClipBox, wxDC* DC, int x1, int y1, int x2, int y2,
|
||||
void GRSRect( EDA_RECT* aClipBox, wxDC* aDC, int x1, int y1, int x2, int y2, int aWidth,
|
||||
const COLOR4D& aColor )
|
||||
{
|
||||
wxPoint points[5];
|
||||
points[0] = wxPoint( x1, y1 );
|
||||
points[1] = wxPoint( x1, y2 );
|
||||
points[2] = wxPoint( x2, y2 );
|
||||
points[3] = wxPoint( x2, y1 );
|
||||
VECTOR2I points[5];
|
||||
points[0] = VECTOR2I( x1, y1 );
|
||||
points[1] = VECTOR2I( x1, y2 );
|
||||
points[2] = VECTOR2I( x2, y2 );
|
||||
points[3] = VECTOR2I( x2, y1 );
|
||||
points[4] = points[0];
|
||||
GRSClosedPoly( aClipBox, aDC, 5, points, NOT_FILLED, aWidth, aColor, aColor );
|
||||
}
|
||||
@ -735,11 +736,11 @@ void GRSRect( EDA_RECT* aClipBox, wxDC* aDC, int x1, int y1, int x2, int y2, int
|
||||
void GRSFilledRect( EDA_RECT* aClipBox, wxDC* aDC, int x1, int y1, int x2, int y2, int aWidth,
|
||||
const COLOR4D& aColor, const COLOR4D& aBgColor )
|
||||
{
|
||||
wxPoint points[5];
|
||||
points[0] = wxPoint( x1, y1 );
|
||||
points[1] = wxPoint( x1, y2 );
|
||||
points[2] = wxPoint( x2, y2 );
|
||||
points[3] = wxPoint( x2, y1 );
|
||||
VECTOR2I points[5];
|
||||
points[0] = VECTOR2I( x1, y1 );
|
||||
points[1] = VECTOR2I( x1, y2 );
|
||||
points[2] = VECTOR2I( x2, y2 );
|
||||
points[3] = VECTOR2I( x2, y1 );
|
||||
points[4] = points[0];
|
||||
|
||||
GRSetBrush( aDC, aBgColor, FILLED );
|
||||
@ -768,16 +769,29 @@ void GRSFilledRect( EDA_RECT* aClipBox, wxDC* aDC, int x1, int y1, int x2, int y
|
||||
|
||||
#include <SutherlandHodgmanClipPoly.h>
|
||||
|
||||
void ClipAndDrawPoly( EDA_RECT* aClipBox, wxDC* aDC, const wxPoint* Points, int n )
|
||||
static void vector2IwxDrawPolygon( wxDC* aDC, const VECTOR2I* Points, int n )
|
||||
{
|
||||
wxPoint* points = new wxPoint[n];
|
||||
|
||||
for( int i = 0; i < n; i++ )
|
||||
{
|
||||
points[i] = wxPoint( Points[i].x, Points[i].y );
|
||||
}
|
||||
|
||||
aDC->DrawPolygon( n, points );
|
||||
delete[] points;
|
||||
}
|
||||
|
||||
void ClipAndDrawPoly( EDA_RECT* aClipBox, wxDC* aDC, const VECTOR2I* Points, int n )
|
||||
{
|
||||
if( aClipBox == nullptr )
|
||||
{
|
||||
aDC->DrawPolygon( n, Points );
|
||||
vector2IwxDrawPolygon( aDC, Points, n );
|
||||
return;
|
||||
}
|
||||
|
||||
// A clip box exists: clip and draw the polygon.
|
||||
static std::vector<wxPoint> clippedPolygon;
|
||||
static std::vector<VECTOR2I> clippedPolygon;
|
||||
static pointVector inputPolygon, outputPolygon;
|
||||
|
||||
inputPolygon.clear();
|
||||
@ -799,7 +813,7 @@ void ClipAndDrawPoly( EDA_RECT* aClipBox, wxDC* aDC, const wxPoint* Points, int
|
||||
}
|
||||
|
||||
if( clippedPolygon.size() )
|
||||
aDC->DrawPolygon( clippedPolygon.size(), &clippedPolygon[0] );
|
||||
vector2IwxDrawPolygon( aDC, &clippedPolygon[0], clippedPolygon.size() );
|
||||
}
|
||||
|
||||
|
||||
|
@ -87,7 +87,7 @@ MARKER_BASE::~MARKER_BASE()
|
||||
}
|
||||
|
||||
|
||||
bool MARKER_BASE::HitTestMarker( const wxPoint& aHitPosition, int aAccuracy ) const
|
||||
bool MARKER_BASE::HitTestMarker( const VECTOR2I& aHitPosition, int aAccuracy ) const
|
||||
{
|
||||
EDA_RECT bbox = GetBoundingBoxMarker();
|
||||
bbox.Inflate( aAccuracy );
|
||||
@ -134,12 +134,12 @@ EDA_RECT MARKER_BASE::GetBoundingBoxMarker() const
|
||||
}
|
||||
|
||||
|
||||
void MARKER_BASE::PrintMarker( const RENDER_SETTINGS* aSettings, const wxPoint& aOffset )
|
||||
void MARKER_BASE::PrintMarker( const RENDER_SETTINGS* aSettings, const VECTOR2I& aOffset )
|
||||
{
|
||||
wxDC* DC = aSettings->GetPrintDC();
|
||||
|
||||
// Build the marker shape polygon in internal units:
|
||||
std::vector<wxPoint> shape;
|
||||
std::vector<VECTOR2I> shape;
|
||||
shape.reserve( CORNERS_COUNT );
|
||||
|
||||
for( const VECTOR2I& corner : MarkerShapeCorners )
|
||||
|
@ -267,12 +267,12 @@ NODE_MAP MapChildren( wxXmlNode* aCurrentNode )
|
||||
}
|
||||
|
||||
|
||||
wxPoint ConvertArcCenter( const wxPoint& aStart, const wxPoint& aEnd, double aAngle )
|
||||
VECTOR2I ConvertArcCenter( const VECTOR2I& aStart, const VECTOR2I& aEnd, double aAngle )
|
||||
{
|
||||
// Eagle give us start and end.
|
||||
// S_ARC wants start to give the center, and end to give the start.
|
||||
double dx = aEnd.x - aStart.x, dy = aEnd.y - aStart.y;
|
||||
wxPoint mid = ( aStart + aEnd ) / 2;
|
||||
VECTOR2I mid = ( aStart + aEnd ) / 2;
|
||||
|
||||
double dlen = sqrt( dx*dx + dy*dy );
|
||||
|
||||
@ -285,7 +285,7 @@ wxPoint ConvertArcCenter( const wxPoint& aStart, const wxPoint& aEnd, double aAn
|
||||
|
||||
double dist = dlen / ( 2 * tan( DEG2RAD( aAngle ) / 2 ) );
|
||||
|
||||
wxPoint center(
|
||||
VECTOR2I center(
|
||||
mid.x + dist * ( dy / dlen ),
|
||||
mid.y - dist * ( dx / dlen )
|
||||
);
|
||||
|
@ -358,7 +358,7 @@ public:
|
||||
NODE_MAP MapChildren( wxXmlNode* aCurrentNode );
|
||||
|
||||
///< Convert an Eagle curve end to a KiCad center for S_ARC
|
||||
wxPoint ConvertArcCenter( const wxPoint& aStart, const wxPoint& aEnd, double aAngle );
|
||||
VECTOR2I ConvertArcCenter( const VECTOR2I& aStart, const VECTOR2I& aEnd, double aAngle );
|
||||
|
||||
// Pre-declare for typedefs
|
||||
struct EROT;
|
||||
|
@ -44,7 +44,7 @@ wxString RC_ITEM::GetErrorMessage() const
|
||||
}
|
||||
|
||||
|
||||
wxString RC_ITEM::ShowCoord( EDA_UNITS aUnits, const wxPoint& aPos )
|
||||
wxString RC_ITEM::ShowCoord( EDA_UNITS aUnits, const VECTOR2I& aPos )
|
||||
{
|
||||
return wxString::Format( "@(%s, %s)",
|
||||
MessageTextFromValue( aUnits, aPos.x ),
|
||||
|
@ -90,7 +90,7 @@ VECTOR2I SELECTION::GetCenter() const
|
||||
|
||||
if( hasOnlyText )
|
||||
{
|
||||
wxPoint center( 0, 0 );
|
||||
VECTOR2I center( 0, 0 );
|
||||
|
||||
for( EDA_ITEM* item : m_items )
|
||||
center += item->GetPosition();
|
||||
|
@ -410,7 +410,7 @@ protected:
|
||||
|
||||
if( line && !side.x )
|
||||
{
|
||||
wxPoint start = line->GetStartPoint(), end = line->GetEndPoint();
|
||||
VECTOR2I start = line->GetStartPoint(), end = line->GetEndPoint();
|
||||
|
||||
if( start.y == end.y && collision != COLLIDE_OBJECTS )
|
||||
collision = COLLIDE_H_WIRES;
|
||||
@ -600,7 +600,7 @@ protected:
|
||||
if( !line )
|
||||
return false;
|
||||
|
||||
wxPoint start = line->GetStartPoint(), end = line->GetEndPoint();
|
||||
VECTOR2I start = line->GetStartPoint(), end = line->GetEndPoint();
|
||||
|
||||
if( start.y != end.y )
|
||||
return false;
|
||||
|
@ -41,23 +41,23 @@
|
||||
#include <trigo.h>
|
||||
|
||||
|
||||
std::vector<wxPoint> SCH_EDIT_FRAME::GetSchematicConnections()
|
||||
std::vector<VECTOR2I> SCH_EDIT_FRAME::GetSchematicConnections()
|
||||
{
|
||||
std::vector<wxPoint> retval;
|
||||
std::vector<VECTOR2I> retval;
|
||||
|
||||
for( SCH_ITEM* item : GetScreen()->Items() )
|
||||
{
|
||||
// Avoid items that are changing
|
||||
if( !( item->GetEditFlags() & ( IS_DRAGGING | IS_MOVING | IS_DELETED ) ) )
|
||||
{
|
||||
std::vector<wxPoint> pts = item->GetConnectionPoints();
|
||||
std::vector<VECTOR2I> pts = item->GetConnectionPoints();
|
||||
retval.insert( retval.end(), pts.begin(), pts.end() );
|
||||
}
|
||||
}
|
||||
|
||||
// We always have some overlapping connection points. Drop duplicates here
|
||||
std::sort( retval.begin(), retval.end(),
|
||||
[]( const wxPoint& a, const wxPoint& b ) -> bool
|
||||
[]( const VECTOR2I& a, const VECTOR2I& b ) -> bool
|
||||
{ return a.x < b.x || (a.x == b.x && a.y < b.y); } );
|
||||
retval.erase(
|
||||
std::unique( retval.begin(), retval.end() ), retval.end() );
|
||||
@ -78,7 +78,7 @@ void SCH_EDIT_FRAME::TestDanglingEnds()
|
||||
}
|
||||
|
||||
|
||||
bool SCH_EDIT_FRAME::TrimWire( const wxPoint& aStart, const wxPoint& aEnd )
|
||||
bool SCH_EDIT_FRAME::TrimWire( const VECTOR2I& aStart, const VECTOR2I& aEnd )
|
||||
{
|
||||
SCH_SCREEN* screen = GetScreen();
|
||||
bool retval = false;
|
||||
@ -292,7 +292,7 @@ bool SCH_EDIT_FRAME::SchematicCleanUp( SCH_SCREEN* aScreen )
|
||||
}
|
||||
|
||||
|
||||
bool SCH_EDIT_FRAME::BreakSegment( SCH_LINE* aSegment, const wxPoint& aPoint,
|
||||
bool SCH_EDIT_FRAME::BreakSegment( SCH_LINE* aSegment, const VECTOR2I& aPoint,
|
||||
SCH_LINE** aNewSegment, SCH_SCREEN* aScreen )
|
||||
{
|
||||
if( aScreen == nullptr )
|
||||
@ -317,7 +317,7 @@ bool SCH_EDIT_FRAME::BreakSegment( SCH_LINE* aSegment, const wxPoint& aPoint,
|
||||
}
|
||||
|
||||
|
||||
bool SCH_EDIT_FRAME::BreakSegments( const wxPoint& aPoint, SCH_SCREEN* aScreen )
|
||||
bool SCH_EDIT_FRAME::BreakSegments( const VECTOR2I& aPoint, SCH_SCREEN* aScreen )
|
||||
{
|
||||
static const KICAD_T wiresAndBuses[] = { SCH_ITEM_LOCATE_WIRE_T, SCH_ITEM_LOCATE_BUS_T, EOT };
|
||||
|
||||
@ -355,7 +355,7 @@ bool SCH_EDIT_FRAME::BreakSegmentsOnJunctions( SCH_SCREEN* aScreen )
|
||||
|
||||
bool brokenSegments = false;
|
||||
|
||||
std::set<wxPoint> point_set;
|
||||
std::set<VECTOR2I> point_set;
|
||||
|
||||
for( SCH_ITEM* item : aScreen->Items().OfType( SCH_JUNCTION_T ) )
|
||||
point_set.insert( item->GetPosition() );
|
||||
@ -368,7 +368,7 @@ bool SCH_EDIT_FRAME::BreakSegmentsOnJunctions( SCH_SCREEN* aScreen )
|
||||
}
|
||||
|
||||
|
||||
for( const wxPoint& pt : point_set )
|
||||
for( const VECTOR2I& pt : point_set )
|
||||
brokenSegments |= BreakSegments( pt, aScreen );
|
||||
|
||||
return brokenSegments;
|
||||
@ -452,7 +452,7 @@ void SCH_EDIT_FRAME::DeleteJunction( SCH_ITEM* aJunction, bool aAppend )
|
||||
}
|
||||
|
||||
|
||||
SCH_JUNCTION* SCH_EDIT_FRAME::AddJunction( SCH_SCREEN* aScreen, const wxPoint& aPos,
|
||||
SCH_JUNCTION* SCH_EDIT_FRAME::AddJunction( SCH_SCREEN* aScreen, const VECTOR2I& aPos,
|
||||
bool aUndoAppend, bool aFinal )
|
||||
{
|
||||
SCH_JUNCTION* junction = new SCH_JUNCTION( aPos );
|
||||
|
@ -511,7 +511,7 @@ void CONNECTION_GRAPH::updateItemConnectivity( const SCH_SHEET_PATH& aSheet,
|
||||
|
||||
for( SCH_ITEM* item : aItemList )
|
||||
{
|
||||
std::vector< wxPoint > points = item->GetConnectionPoints();
|
||||
std::vector<VECTOR2I> points = item->GetConnectionPoints();
|
||||
item->ConnectedItems( aSheet ).clear();
|
||||
|
||||
if( item->Type() == SCH_SHEET_T )
|
||||
@ -534,7 +534,7 @@ void CONNECTION_GRAPH::updateItemConnectivity( const SCH_SHEET_PATH& aSheet,
|
||||
{
|
||||
pin->InitializeConnection( aSheet, this );
|
||||
|
||||
wxPoint pos = pin->GetPosition();
|
||||
VECTOR2I pos = pin->GetPosition();
|
||||
|
||||
// because calling the first time is not thread-safe
|
||||
pin->GetDefaultNetName( aSheet );
|
||||
@ -583,7 +583,7 @@ void CONNECTION_GRAPH::updateItemConnectivity( const SCH_SHEET_PATH& aSheet,
|
||||
break;
|
||||
}
|
||||
|
||||
for( const wxPoint& point : points )
|
||||
for( const VECTOR2I& point : points )
|
||||
connection_map[ point ].push_back( item );
|
||||
}
|
||||
|
||||
@ -2559,7 +2559,7 @@ bool CONNECTION_GRAPH::ercCheckNoConnects( const CONNECTION_SUBGRAPH* aSubgraph
|
||||
bool has_other_items = false;
|
||||
SCH_PIN* pin = nullptr;
|
||||
std::vector<SCH_ITEM*> invalid_items;
|
||||
wxPoint noConnectPos = aSubgraph->m_no_connect->GetPosition();
|
||||
VECTOR2I noConnectPos = aSubgraph->m_no_connect->GetPosition();
|
||||
double minDist = 0;
|
||||
|
||||
// Any subgraph that contains both a pin and a no-connect should not
|
||||
|
@ -46,7 +46,7 @@ SCH_ITEM* SCH_EDITOR_CONTROL::FindSymbolAndItem( const wxString* aPath, const wx
|
||||
{
|
||||
SCH_SHEET_PATH* sheetWithSymbolFound = nullptr;
|
||||
SCH_SYMBOL* symbol = nullptr;
|
||||
wxPoint pos;
|
||||
VECTOR2I pos;
|
||||
SCH_PIN* pin = nullptr;
|
||||
SCH_SHEET_LIST sheetList;
|
||||
SCH_ITEM* foundItem = nullptr;
|
||||
|
@ -637,8 +637,8 @@ bool DIALOG_CHANGE_SYMBOLS::processSymbol( SCH_SYMBOL* aSymbol, const SCH_SHEET_
|
||||
if( resetEffects )
|
||||
{
|
||||
// Careful: the visible bit and position are also set by SetAttributes()
|
||||
bool visible = field.IsVisible();
|
||||
wxPoint pos = field.GetPosition();
|
||||
bool visible = field.IsVisible();
|
||||
VECTOR2I pos = field.GetPosition();
|
||||
|
||||
field.SetAttributes( *libField );
|
||||
|
||||
@ -647,7 +647,7 @@ bool DIALOG_CHANGE_SYMBOLS::processSymbol( SCH_SYMBOL* aSymbol, const SCH_SHEET_
|
||||
}
|
||||
|
||||
if( resetPositions )
|
||||
field.SetTextPos( (VECTOR2I)aSymbol->GetPosition() + libField->GetTextPos() );
|
||||
field.SetTextPos( aSymbol->GetPosition() + libField->GetTextPos() );
|
||||
}
|
||||
else if( i >= MANDATORY_FIELDS && removeExtras )
|
||||
{
|
||||
@ -669,13 +669,13 @@ bool DIALOG_CHANGE_SYMBOLS::processSymbol( SCH_SYMBOL* aSymbol, const SCH_SHEET_
|
||||
if( !aSymbol->FindField( libField.GetName(), false ) )
|
||||
{
|
||||
wxString fieldName = libField.GetCanonicalName();
|
||||
SCH_FIELD newField( wxPoint( 0, 0), aSymbol->GetFieldCount(), aSymbol, fieldName );
|
||||
SCH_FIELD newField( VECTOR2I( 0, 0), aSymbol->GetFieldCount(), aSymbol, fieldName );
|
||||
SCH_FIELD* schField = aSymbol->AddField( newField );
|
||||
|
||||
// Careful: the visible bit and position are also set by SetAttributes()
|
||||
schField->SetAttributes( libField );
|
||||
schField->SetText( libField.GetText() );
|
||||
schField->SetTextPos( (VECTOR2I)aSymbol->GetPosition() + libField.GetTextPos() );
|
||||
schField->SetTextPos( aSymbol->GetPosition() + libField.GetTextPos() );
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -600,7 +600,7 @@ void DIALOG_SCH_FIELD_PROPERTIES::UpdateField( SCH_FIELD* aField, SCH_SHEET_PATH
|
||||
GR_TEXT_V_ALIGN_T vJustify = EDA_TEXT::MapVertJustify( m_verticalJustification - 1 );
|
||||
bool positioningModified = false;
|
||||
|
||||
if( aField->GetPosition() != (wxPoint)m_position )
|
||||
if( aField->GetPosition() != m_position )
|
||||
positioningModified = true;
|
||||
|
||||
if( aField->GetTextAngle().IsVertical() != m_isVertical )
|
||||
@ -617,7 +617,7 @@ void DIALOG_SCH_FIELD_PROPERTIES::UpdateField( SCH_FIELD* aField, SCH_SHEET_PATH
|
||||
|
||||
aField->SetText( m_text );
|
||||
updateText( aField );
|
||||
aField->SetPosition( (wxPoint)m_position );
|
||||
aField->SetPosition( m_position );
|
||||
|
||||
// Note that we must set justifications before we can ask if they're flipped. If the old
|
||||
// justification is center then it won't know (whereas if the new justification is center
|
||||
|
@ -619,7 +619,7 @@ void DIALOG_LIB_EDIT_PIN_TABLE::OnAddRow( wxCommandEvent& event )
|
||||
newPin->SetType( last->GetType() );
|
||||
newPin->SetShape( last->GetShape() );
|
||||
|
||||
wxPoint pos = last->GetPosition();
|
||||
VECTOR2I pos = last->GetPosition();
|
||||
|
||||
SYMBOL_EDITOR_SETTINGS* cfg = m_editFrame->GetSettings();
|
||||
|
||||
|
@ -155,7 +155,7 @@ bool DIALOG_LIB_SYMBOL_PROPERTIES::TransferDataToWindow()
|
||||
// to bottom: we must change the y coord sign for editing
|
||||
for( size_t i = 0; i < m_fields->size(); ++i )
|
||||
{
|
||||
wxPoint pos = m_fields->at( i ).GetPosition();
|
||||
VECTOR2I pos = m_fields->at( i ).GetPosition();
|
||||
pos.y = -pos.y;
|
||||
m_fields->at( i ).SetPosition( pos );
|
||||
}
|
||||
@ -329,7 +329,7 @@ bool DIALOG_LIB_SYMBOL_PROPERTIES::TransferDataFromWindow()
|
||||
// to bottom: we must change the y coord sign when writing back to the library
|
||||
for( size_t i = 0; i < m_fields->size(); ++i )
|
||||
{
|
||||
wxPoint pos = m_fields->at( i ).GetPosition();
|
||||
VECTOR2I pos = m_fields->at( i ).GetPosition();
|
||||
pos.y = -pos.y;
|
||||
m_fields->at( i ).SetPosition( pos );
|
||||
m_fields->at( i ).SetId( i );
|
||||
|
@ -389,7 +389,7 @@ void DIALOG_PIN_PROPERTIES::OnPaintShowPanel( wxPaintEvent& event )
|
||||
RENDER_SETTINGS* renderSettings = symbolEditor->GetRenderSettings();
|
||||
renderSettings->SetPrintDC( &dc );
|
||||
|
||||
m_dummyPin->Print( renderSettings, (wxPoint) - bBox.Centre(), (void*) &opts, DefaultTransform );
|
||||
m_dummyPin->Print( renderSettings, -bBox.Centre(), (void*) &opts, DefaultTransform );
|
||||
|
||||
event.Skip();
|
||||
}
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user