Bump version to 6.4-15
[LibreOffice.git] / include / tools / UnitConversion.hxx
blob2585fecbb5907a0375fa90b42e9b75fd264a121b
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 */
11 #pragma once
13 constexpr sal_Int64 convertTwipToMm100(sal_Int64 n)
15 return (n >= 0) ? (n * 127 + 36) / 72 : (n * 127 - 36) / 72;
18 constexpr sal_Int64 convertMm100ToTwip(sal_Int64 n)
20 return (n >= 0) ? (n * 72 + 63) / 127 : (n * 72 - 63) / 127;
23 constexpr sal_Int64 convertPointToTwip(sal_Int64 nNumber) { return nNumber * 20; }
25 constexpr sal_Int64 convertPointToMm100(sal_Int64 nNumber)
27 return convertTwipToMm100(convertPointToTwip(nNumber));
30 constexpr double convertPointToTwip(double fNumber) { return fNumber * 20.0; }
32 constexpr double convertPointToMm100(double fNumber) { return fNumber * 35.27777777778; }
34 // Convert PPT's "master unit" (1/576 inch) to twips
35 constexpr sal_Int64 convertMasterUnitToTwip(sal_Int64 n) { return n * 2540.0 / 576.0; }
37 // Convert twips to PPT's "master unit"
38 constexpr sal_Int64 convertTwipToMasterUnit(sal_Int64 n) { return n / (2540.0 / 576.0); }
40 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */