From adb9bd4e463b14d5b5860d8bc17848a30991d48b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20W=C3=BCst?= Date: Sun, 3 Nov 2013 15:52:50 +0100 Subject: added more todos (bzr r12417.1.37) --- share/extensions/hpgl_decoder.py | 1 + share/extensions/hpgl_encoder.py | 1 + share/extensions/hpgl_input.py | 1 + share/extensions/hpgl_output.py | 1 + share/extensions/plotter.py | 3 ++- 5 files changed, 6 insertions(+), 1 deletion(-) diff --git a/share/extensions/hpgl_decoder.py b/share/extensions/hpgl_decoder.py index 1b6106430..870775cb2 100644 --- a/share/extensions/hpgl_decoder.py +++ b/share/extensions/hpgl_decoder.py @@ -25,6 +25,7 @@ import math import inkex +# TODO: Unittests class hpglDecoder: def __init__(self, hpglString, options): diff --git a/share/extensions/hpgl_encoder.py b/share/extensions/hpgl_encoder.py index b5c927959..90d2734be 100644 --- a/share/extensions/hpgl_encoder.py +++ b/share/extensions/hpgl_encoder.py @@ -31,6 +31,7 @@ import simplestyle import simpletransform +# TODO: Unittests class hpglEncoder: PI = math.pi TWO_PI = PI * 2 diff --git a/share/extensions/hpgl_input.py b/share/extensions/hpgl_input.py index bf99a5e72..d1d46c76f 100644 --- a/share/extensions/hpgl_input.py +++ b/share/extensions/hpgl_input.py @@ -28,6 +28,7 @@ import sys inkex.localize() +# TODO: Unittests # parse options parser = inkex.optparse.OptionParser(usage='usage: %prog [options] HPGLfile', option_class=inkex.InkOption) parser.add_option('--resolutionX', action='store', type='float', dest='resolutionX', default=1016.0, help='Resolution X (dpi)') diff --git a/share/extensions/hpgl_output.py b/share/extensions/hpgl_output.py index 16a656856..c5fec0ec8 100755 --- a/share/extensions/hpgl_output.py +++ b/share/extensions/hpgl_output.py @@ -26,6 +26,7 @@ import inkex inkex.localize() +# TODO: Unittests class MyEffect(inkex.Effect): def __init__(self): diff --git a/share/extensions/plotter.py b/share/extensions/plotter.py index 6ff6adeaf..aef9e016d 100644 --- a/share/extensions/plotter.py +++ b/share/extensions/plotter.py @@ -28,7 +28,8 @@ import inkex inkex.localize() -# TODO: Materialvorschub nach plot, rechtecke plotten +# TODO: Unittests +# TODO: Material feed after plot, plot rectangles class MyEffect(inkex.Effect): def __init__(self): -- cgit v1.2.3