From 461d0e9a49dbd4d53e9445804a48d637db65b110 Mon Sep 17 00:00:00 2001 From: Seth Hillbrand Date: Sun, 14 Jun 2020 07:53:15 -0700 Subject: [PATCH] Unify rounding in altium to KiCad converter This fixes an issue in the integer conversion that caused truncation errors. Handling the conversion from micromil to nanometer using doubles keeps intermediate values correctly rounded. There remain some conversions that are lost where Altium rounded its metric representation. --- pcbnew/altium2kicadpcb_plugin/altium_parser.h | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/pcbnew/altium2kicadpcb_plugin/altium_parser.h b/pcbnew/altium2kicadpcb_plugin/altium_parser.h index e8161c9b56..830a3a0df1 100644 --- a/pcbnew/altium2kicadpcb_plugin/altium_parser.h +++ b/pcbnew/altium2kicadpcb_plugin/altium_parser.h @@ -2,6 +2,7 @@ * This program source code file is part of KiCad, a free EDA CAD application. * * Copyright (C) 2019-2020 Thomas Pointhuber + * Copyright (C) 2020 KiCad Developers, see AUTHORS.txt for contributors. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -120,14 +121,11 @@ public: std::map ReadProperties(); - static int32_t ConvertToKicadUnit( const int32_t aValue ) - { - return ( ( (int64_t) aValue ) * 254L ) / 100; - } - static int32_t ConvertToKicadUnit( const double aValue ) { - return KiROUND( aValue * 2.54L ); + double int_limit = std::numeric_limits::max() * 0.7071; // 0.7071 = roughly 1/sqrt(2) + + return KiROUND( Clamp( -int_limit, aValue * 2.54, int_limit ) ); } static int PropertiesReadInt(