Version 5.2.6.1, tag libreoffice-5.2.6.1
[LibreOffice.git] / android / source / src / java / org / libreoffice / UnitConverter.java
blobe0dcfb86b93f23213d6a7193cee94d33c0801d67
1 package org.libreoffice;
4 public class UnitConverter {
5 public static float twipToPixel(float input, float dpi) {
6 return input / 1440.0f * dpi;
9 public static float pixelToTwip(float input, float dpi) {
10 return (input / dpi) * 1440.0f;