diff options
-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) |