diff options
author | Michael Schwarz <michi.schwarz@gmail.com> | 2016-01-17 13:31:08 +0100 |
---|---|---|
committer | Michael Schwarz <michi.schwarz@gmail.com> | 2016-01-17 13:31:08 +0100 |
commit | 673a546066aed704d7087740a4190a023a7c9220 (patch) | |
tree | 99460d1bffc139d68052b7da0f277e0eeb9e049f /support | |
parent | 0a746f9df28a3cdbbac997a636816db2a1ef8eab (diff) | |
download | pogojig-673a546066aed704d7087740a4190a023a7c9220.tar.gz pogojig-673a546066aed704d7087740a4190a023a7c9220.tar.bz2 pogojig-673a546066aed704d7087740a4190a023a7c9220.zip |
Clarification regarding different point definitions.
Diffstat (limited to 'support')
-rw-r--r-- | support/inkscape/effect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/inkscape/effect.py b/support/inkscape/effect.py index 7d95193..6acabfb 100644 --- a/support/inkscape/effect.py +++ b/support/inkscape/effect.py @@ -163,7 +163,7 @@ class ExportEffect(inkex.Effect): def write_line(format, *args): print >> file, format.format(*args) + ';' - # Scales pixels to points. Asymptote uses points by default. + # Scales pixels to points. Asymptote uses PostScript points (1 / 72 inch) by default. unit_factor = self._unit_factors['pt'] paths_by_layer = collections.defaultdict(list) |