blob: eb53756b45201a60689f3cbb1cda4045edf4d2a5 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#include <ctype.h>
#include "dimen.hh"
#include "debug.hh"
#include "string.hh"
Real
parse_dimen(String dim)
{
int i=dim.len()-1;
const char *s = dim;
while (i > 0 && (isspace(s[i]) || isalpha(s[i])) ){
i--;
}
String unit(s + i+1);
return convert_dimen(dim.fvalue(), unit);
}
const Real CM_TO_PT=72/2.54;
Real
convert_dimen(Real quant, String unit)
{
if (unit == "cm")
return quant * CM_TO_PT;
if (unit == "pt")
return quant;
if (unit == "mm")
return quant*CM_TO_PT/10;
if (unit == "in")
return quant * 72;
error ("unknown length unit: `" + unit+"'");
}
String
print_dimen(Real r)
{
String s(r);
s += "pt ";
return s;
}
|