LibreOffice Module android (master) 1
UnitConverter.java
Go to the documentation of this file.
1package org.libreoffice;
2
3
4public class UnitConverter {
5 public static float twipToPixel(float input, float dpi) {
6 return input / 1440.0f * dpi;
7 }
8
9 public static float pixelToTwip(float input, float dpi) {
10 return (input / dpi) * 1440.0f;
11 }
12
13 public static float twipsToHMM(float twips) {
14 return (twips * 127 + 36) / 72;
15 }
16}
static float twipsToHMM(float twips)
static float twipToPixel(float input, float dpi)
static float pixelToTwip(float input, float dpi)