From 857f9f321697ba9e6f7043dc332a8c7170ff88e9 Mon Sep 17 00:00:00 2001 From: Russell Oliver Date: Sat, 19 Aug 2017 15:43:45 +1000 Subject: [PATCH] Eeschema Eagle Import: arc fix --- eeschema/sch_eagle_plugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eeschema/sch_eagle_plugin.cpp b/eeschema/sch_eagle_plugin.cpp index 3f91794c08..127031da29 100644 --- a/eeschema/sch_eagle_plugin.cpp +++ b/eeschema/sch_eagle_plugin.cpp @@ -1499,7 +1499,7 @@ LIB_ITEM* SCH_EAGLE_PLUGIN::loadSymbolWire( std::unique_ptr< LIB_PART >& aPart, if( ewire.curve ) { std::unique_ptr arc( new LIB_ARC( aPart.get() ) ); - wxRealPoint center = kicad_arc_center( begin, end, *ewire.curve); + wxRealPoint center = kicad_arc_center( begin, end, *ewire.curve*-1); arc->SetPosition(center); if(*ewire.curve >0)