Skip to content

Commit

Permalink
BurnTest: Add datie and id options
Browse files Browse the repository at this point in the history
Resolves: #621
  • Loading branch information
florianfesti committed Mar 23, 2024
1 parent 7d4170f commit 7fdd01e
Showing 1 changed file with 54 additions and 13 deletions.
67 changes: 54 additions & 13 deletions boxes/generators/burntest.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Copyright (C) 2013-2019 Florian Festi
# Copyright (C) 2024 Seth Fischer
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
Expand All @@ -13,11 +14,14 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

from datetime import date

from boxes import *


class BurnTest(Boxes):
"""Test different burn values"""

description = """This generator will make shapes that you can use to select
optimal value for burn parameter for other generators. After burning try to
attach sides with the same value and use best fitting one on real projects.
Expand All @@ -40,35 +44,72 @@ def __init__(self) -> None:
self.addSettingsArgs(edges.FingerJointSettings)
self.buildArgParser(x=100)
self.argparser.add_argument(
"--step", action="store", type=float, default=0.01,
help="increases in burn value between the sides")
"--step",
action="store",
type=float,
default=0.01,
help="increases in burn value between the sides",
)
self.argparser.add_argument(
"--pairs", action="store", type=int, default=2,
help="number of pairs (each testing four burn values)")

"--pairs",
action="store",
type=int,
default=2,
help="number of pairs (each testing four burn values)",
)
self.argparser.add_argument(
"--date",
action="store",
type=boolarg,
default=False,
help="add current date etching to each piece",
)
self.argparser.add_argument(
"--id",
action="store",
type=str,
default="",
help="add identifier etching to each piece",
)

def render(self):
font = {
"fontsize": 12.5 * self.x / 100 if self.x < 81 else 10,
"align": "center",
"color": Color.ETCHING,
}
font_meta = font.copy()
font_meta["fontsize"] = font["fontsize"] * 0.75

today = date.today().strftime("%Y-%m-%d")

x, s = self.x, self.step
t = self.thickness

fsize = 12.5 * self.x / 100 if self.x < 81 else 10

self.moveTo(t, t)

for cnt in range(self.pairs):

for i in range(4):
self.text("%.3fmm" % self.burn, x/2, t, fontsize = fsize, align="center", color=Color.ETCHING)
self.text("%.3fmm" % self.burn, x / 2, t, **font)
if self.date and i == 3:
self.text(today, x / 2, 20, **font_meta)
if self.id and i == 1:
self.text(self.id, x / 2, 20, **font_meta)
self.edges["f"](x)
self.corner(90)
self.burn += s

self.burn -= 4*s
self.burn -= 4 * s
self.moveTo(x + 2 * t + self.spacing, -t)

self.moveTo(x+2*t+self.spacing, -t)
for i in range(4):
self.text("%.3fmm" % self.burn, x/2, t, fontsize = fsize, align="center", color=Color.ETCHING)
self.text("%.3fmm" % self.burn, x / 2, t, **font)
if self.date and i == 3:
self.text(today, x / 2, 20, **font_meta)
if self.id and i == 1:
self.text(self.id, x / 2, 20, **font_meta)
self.edges["F"](x)
self.polyline(t, 90, t)
self.burn += s
self.moveTo(x+2*t+self.spacing, t)

self.moveTo(x + 2 * t + self.spacing, t)

0 comments on commit 7fdd01e

Please sign in to comment.