From 9bdd5e4ddaec6d6e501078a34d4ad28308c2ed25 Mon Sep 17 00:00:00 2001 From: Mateusz Konieczny Date: Sat, 20 Mar 2021 20:17:17 +0100 Subject: [PATCH] mentioned ClosedBox and BasedBox in each other descriptions --- boxes/generators/basedbox.py | 5 ++++- boxes/generators/closedbox.py | 4 +++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/boxes/generators/basedbox.py b/boxes/generators/basedbox.py index 53191ff..12146a2 100644 --- a/boxes/generators/basedbox.py +++ b/boxes/generators/basedbox.py @@ -25,7 +25,10 @@ class BasedBox(Boxes): description = """This box is more of a building block than a finished item. Use a vector graphics program (like Inkscape) to add holes or adjust the base plate. The width of the "brim" can also be adjusted with the **edge_width** - parameter in the **Finger Joints Settings**.""" + parameter in the **Finger Joints Settings**. + +See ClosedBox for variant without a base. +""" def __init__(self): Boxes.__init__(self) diff --git a/boxes/generators/closedbox.py b/boxes/generators/closedbox.py index e7b3a8f..5d63b13 100644 --- a/boxes/generators/closedbox.py +++ b/boxes/generators/closedbox.py @@ -24,7 +24,9 @@ class ClosedBox(Boxes): description = """This box is more of a building block than a finished item. Use a vector graphics program (like Inkscape) to add holes or adjust the base -plate.""" +plate. + +See BasedBox for variant with a base.""" def __init__(self): Boxes.__init__(self)