forked from josch/plakativ
Fix Issue #7, unit conversion bug.
This commit is contained in:
parent
7a951f1b31
commit
65d4cab1ff
1 changed files with 1 additions and 1 deletions
|
@ -99,7 +99,7 @@ def cm_to_mm(length):
|
||||||
|
|
||||||
|
|
||||||
def in_to_mm(length):
|
def in_to_mm(length):
|
||||||
return length / 25.4
|
return length * 25.4
|
||||||
|
|
||||||
|
|
||||||
def pt_to_mm(length):
|
def pt_to_mm(length):
|
||||||
|
|
Loading…
Reference in a new issue