mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-14 02:03:12 +02:00
Adjust CADSTAR importer for coord system flip.
This commit is contained in:
parent
893d178439
commit
fd44ee6aa6
@ -3395,7 +3395,7 @@ VECTOR2I CADSTAR_SCH_ARCHIVE_LOADER::getKiCadLibraryPoint( const VECTOR2I& aCads
|
||||
VECTOR2I retval;
|
||||
|
||||
retval.x = getKiCadLength( aCadstarPoint.x - aCadstarCentre.x );
|
||||
retval.y = getKiCadLength( aCadstarPoint.y - aCadstarCentre.y );
|
||||
retval.y = -getKiCadLength( aCadstarPoint.y - aCadstarCentre.y );
|
||||
|
||||
return retval;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user