Adjust CADSTAR importer for coord system flip.

This commit is contained in:
Jeff Young 2024-05-03 17:42:51 +01:00
parent 893d178439
commit fd44ee6aa6
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}