/* * GNU AFFERO GENERAL PUBLIC LICENSE * Version 3, 19 November 2007 * Copyright (C) 2007 Free Software Foundation, Inc. * Everyone is permitted to copy and distribute verbatim copies * of this license document, but changing it is not allowed. */ namespace UVtools.Core.Extensions; public static class UnitExtensions { /// /// 1 inch to 1 mm /// public const double InchToMillimeter = 25.4; /// /// 1 mm to 1 inch /// public const double MillimeterToInch = 0.0393700787; }