Eeschema Eagle Import: arc fix

This commit is contained in:
Russell Oliver 2017-08-19 15:43:45 +10:00 committed by Maciej Suminski
parent afaa2499dc
commit 857f9f3216
1 changed files with 1 additions and 1 deletions

View File

@ -1499,7 +1499,7 @@ LIB_ITEM* SCH_EAGLE_PLUGIN::loadSymbolWire( std::unique_ptr< LIB_PART >& aPart,
if( ewire.curve )
{
std::unique_ptr<LIB_ARC> 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)