From 847e133f97d570e2967dfa7dcfc16a212dc2bbbc Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Tue, 17 Jan 2023 21:44:23 -0500 Subject: meander fill: more work --- lib/debug.py | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'lib/debug.py') diff --git a/lib/debug.py b/lib/debug.py index 0d6af104..94d32cea 100644 --- a/lib/debug.py +++ b/lib/debug.py @@ -233,6 +233,15 @@ class Debug(object): INKSCAPE_LABEL: name })) + @check_enabled + def log_point(self, point, name="point", color=None): + self.log_svg_element(etree.Element("circle", { + "cx": str(point.x), + "cy": str(point.y), + "r": "1", + "style": str(inkex.Style({"fill": "#000000"})), + })) + @check_enabled def log_graph(self, graph, name="Graph", color=None): d = "" -- cgit v1.2.3