From 88d42807be0de845e90a1273c72c2e1b64587af8 Mon Sep 17 00:00:00 2001 From: Jan Petykiewicz Date: Fri, 8 Jan 2021 21:20:03 -0800 Subject: [PATCH] label axes in visualization --- masque/pattern.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/masque/pattern.py b/masque/pattern.py index 7cbd06d..eb5f86e 100644 --- a/masque/pattern.py +++ b/masque/pattern.py @@ -958,6 +958,8 @@ class Pattern(LockableImpl, AnnotatableImpl, Mirrorable, metaclass=AutoSlots): line_color=line_color, fill_color=fill_color) if not overdraw: + pyplot.xlabel('x') + pyplot.ylabel('y') pyplot.show() @staticmethod