776 lines
42 KiB
Python
776 lines
42 KiB
Python
#!/usr/bin/env python3
|
|
'''
|
|
Copyleft ( ) 2009 Celso Junior celsojr2008 at gmail dot com>,
|
|
2015 Maren Hachmann <marenhachmann@yahoo.com> (updated for Inkscape 0.91)
|
|
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
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
|
|
TODO: Mailer Lock; Tuck and Tongle; Gusset Tuck; Arthur Lock
|
|
Dust Flaps; Edge Lock; Houghland Snap Lock Bottom
|
|
(semi automatic); Quad Lock Bottom; Himes Lock (Automatic Bottom); Security Zipper
|
|
|
|
'''
|
|
|
|
import inkex
|
|
from math import *
|
|
from lxml import etree
|
|
from inkex.paths import Path
|
|
|
|
class inkpacking(inkex.EffectExtension):
|
|
|
|
def add_arguments(self, pars):
|
|
pars.add_argument("--pages")
|
|
pars.add_argument("--dustpages")
|
|
pars.add_argument("--width", type=float, default=10.0)
|
|
pars.add_argument("--height", type=float, default=15.0)
|
|
pars.add_argument("--depth", type=float, default=3.0)
|
|
pars.add_argument("--unit", default="mm")
|
|
pars.add_argument("--topscheme", default="rwlf")
|
|
pars.add_argument("--botscheme", default="rwlf")
|
|
pars.add_argument("--paper_thickness", type=float, default=0.5)
|
|
pars.add_argument("--tab_proportion", type=float, default=14, help="Inner tab propotion for upper tab")
|
|
pars.add_argument("--lockroundradius", type=float, default=18, help="Lock Radius")
|
|
pars.add_argument("--clueflapsize", type=float, default=13, help="Clue Flap Size")
|
|
pars.add_argument("--clueflapangle", type=float, default=12, help="Clue Flap Angle")
|
|
pars.add_argument("--clueflapside", type=inkex.Boolean, default=False)
|
|
pars.add_argument("--tfal", type=inkex.Boolean, default=False)
|
|
pars.add_argument("--bfal", type=inkex.Boolean, default=False)
|
|
pars.add_argument("--hotmeltprop", type=float, default=0.6)
|
|
pars.add_argument("--createshapes", type=inkex.Boolean, default=False)
|
|
pars.add_argument("--createglueshapes", type=inkex.Boolean, default=False)
|
|
pars.add_argument("--fingergrepa", type=inkex.Boolean, default=False)
|
|
pars.add_argument("--fingergrepb", type=inkex.Boolean, default=False)
|
|
pars.add_argument("--fingergrepr", type=float, default=5)
|
|
pars.add_argument("--usetop", type=inkex.Boolean, default=False)
|
|
pars.add_argument("--glueflapinoff", type=float, default=0)
|
|
pars.add_argument("--glueflapin45", type=float, default=2)
|
|
pars.add_argument("--glueflapinang", type=float, default=7)
|
|
pars.add_argument("--glueflapouoff", type=float, default=0)
|
|
pars.add_argument("--glueflapou45", type=float, default=3)
|
|
pars.add_argument("--glueflapouang", type=float, default=12)
|
|
pars.add_argument("--bglueflapinoff", type=float, default=0)
|
|
pars.add_argument("--bglueflapin45", type=float, default=2)
|
|
pars.add_argument("--bglueflapinang", type=float, default=7)
|
|
pars.add_argument("--bglueflapouoff", type=float, default=0)
|
|
pars.add_argument("--bglueflapou45", type=float, default=3)
|
|
pars.add_argument("--bglueflapouang", type=float, default=12)
|
|
pars.add_argument("--roto", type=float, default=0)
|
|
|
|
def effect(self):
|
|
docW = self.svg.unittouu(self.document.getroot().get('width'))
|
|
docH = self.svg.unittouu(self.document.getroot().get('height'))
|
|
roto = self.svg.unittouu( str(self.options.roto) + self.options.unit )
|
|
boxW = self.svg.unittouu( str(self.options.width) + self.options.unit )
|
|
boxH = self.svg.unittouu( str(self.options.height) + self.options.unit )
|
|
boxD = self.svg.unittouu( str(self.options.depth) + self.options.unit )
|
|
boxL = self.svg.unittouu( str(self.options.tab_proportion) + self.options.unit )
|
|
thck = self.svg.unittouu( str(self.options.paper_thickness) + self.options.unit )
|
|
fingergrepr = self.svg.unittouu( str(self.options.fingergrepr) + self.options.unit )
|
|
gflapsize = self.svg.unittouu( str(self.options.clueflapsize) + self.options.unit )
|
|
gflapangle = self.options.clueflapangle
|
|
gfmirror = self.options.clueflapside
|
|
fingergrepa = self.options.fingergrepa
|
|
fingergrepb = self.options.fingergrepb
|
|
gflapangle = 90 - gflapangle
|
|
usetop = self.options.usetop
|
|
glueflapinoff = self.svg.unittouu( str(self.options.glueflapinoff) + self.options.unit )
|
|
glueflapin45 = self.svg.unittouu( str(self.options.glueflapin45) + self.options.unit )
|
|
lockrr = self.svg.unittouu( str(self.options.lockroundradius) + self.options.unit )
|
|
glueflapinang = self.options.glueflapinang
|
|
glueflapindesl = (( (boxD + boxL) / 2 - glueflapinoff - glueflapin45) / sin(radians(90 - glueflapinang)) * sin(radians(glueflapinang)))
|
|
glueflapouoff = self.svg.unittouu( str(self.options.glueflapouoff) + self.options.unit )
|
|
glueflapou45 = self.svg.unittouu( str(self.options.glueflapou45) + self.options.unit )
|
|
glueflapouang = self.options.glueflapouang
|
|
glueflapoudesl = (( (boxD + boxL) / 2 - glueflapouoff - glueflapou45) / sin(radians(90 - glueflapouang)) * sin(radians(glueflapouang)))
|
|
bglueflapinoff = self.svg.unittouu( str(self.options.bglueflapinoff) + self.options.unit )
|
|
bglueflapin45 = self.svg.unittouu( str(self.options.bglueflapin45) + self.options.unit )
|
|
bglueflapinang = self.options.bglueflapinang
|
|
bglueflapindesl = (( (boxD + boxL) / 2 - bglueflapinoff - bglueflapin45) / sin(radians(90 - bglueflapinang)) * sin(radians(bglueflapinang)))
|
|
bglueflapouoff = self.svg.unittouu( str(self.options.bglueflapouoff) + self.options.unit )
|
|
bglueflapou45 = self.svg.unittouu( str(self.options.bglueflapou45) + self.options.unit )
|
|
bglueflapouang = self.options.bglueflapouang
|
|
bglueflapoudesl = (( (boxD + boxL) / 2 - bglueflapouoff - bglueflapou45) / sin(radians(90 - bglueflapouang)) * sin(radians(bglueflapouang)))
|
|
tpsc = self.options.topscheme
|
|
btsc = self.options.botscheme
|
|
tfal = self.options.tfal
|
|
bfal = self.options.bfal
|
|
hotmeltp = self.options.hotmeltprop
|
|
|
|
angx = asin( (boxL - thck) / lockrr )
|
|
angy = (3.141615 / 2) - angx
|
|
lockroff = lockrr - (lockrr * sin(angy))
|
|
|
|
box_id = self.svg.get_unique_id('box')
|
|
self.box = g = etree.SubElement(self.svg.get_current_layer(), 'g', {'id':box_id})
|
|
cut_line_style = str(inkex.Style(({ 'stroke': '#000000', 'fill': 'none', 'stroke-width':'0.3px' })))
|
|
engrave_line_style = str(inkex.Style(({ 'stroke': '#ff0000', 'fill': 'none', 'stroke-width':'0.3px' })))
|
|
|
|
gflapoffy = (gflapsize / sin( (gflapangle / 360) * 6.28 )) * sin( ((90 - gflapangle) / 360 ) * 6.28)
|
|
|
|
# Side Glueflap
|
|
if not gfmirror:
|
|
line_path = [
|
|
[ 'M', [0, 0]],
|
|
[ 'L', [gflapsize * -1, gflapoffy]],
|
|
[ 'L', [gflapsize * -1, boxH - gflapoffy]],
|
|
[ 'L', [0, boxH]],
|
|
[ 'M', [0, 0]]
|
|
]
|
|
|
|
if gfmirror:
|
|
line_path = [
|
|
[ 'M', [boxW+boxD+boxW+boxD - thck, 0]],
|
|
[ 'L', [boxW+boxD+boxW+boxD - thck + gflapsize, gflapoffy]],
|
|
[ 'L', [boxW+boxD+boxW+boxD - thck + gflapsize, boxH - gflapoffy]],
|
|
[ 'L', [boxW+boxD+boxW+boxD - thck, boxH]],
|
|
[ 'M', [boxW+boxD+boxW+boxD - thck, 0]]
|
|
]
|
|
|
|
|
|
line_atts = { 'style':cut_line_style, 'id':box_id+'-sideglueflap', 'd':str(Path(line_path)) }
|
|
etree.SubElement(g, inkex.addNS('path','svg'), line_atts )
|
|
|
|
|
|
# MainBody
|
|
line_path = [
|
|
[ 'M', [0, 0]],
|
|
[ 'L', [0, boxH]]
|
|
]
|
|
if gfmirror:
|
|
style = cut_line_style
|
|
else:
|
|
style = engrave_line_style
|
|
line_atts = { 'style':style, 'id':box_id+'-body-left', 'd':str(Path(line_path)) }
|
|
etree.SubElement(g, inkex.addNS('path','svg'), line_atts )
|
|
|
|
line_path = [
|
|
[ 'M', [boxW, 0]],
|
|
[ 'L', [boxW, boxH]],
|
|
|
|
[ 'M', [boxW + boxD, 0]],
|
|
[ 'L', [boxW + boxD, boxH]],
|
|
|
|
[ 'M', [boxW + boxD + boxW, 0]],
|
|
[ 'L', [boxW + boxD + boxW, boxH]]
|
|
]
|
|
line_atts = { 'style':engrave_line_style, 'id':box_id+'-body-mid', 'd':str(Path(line_path)) }
|
|
etree.SubElement(g, inkex.addNS('path','svg'), line_atts )
|
|
|
|
if gfmirror:
|
|
style = engrave_line_style
|
|
else:
|
|
style = cut_line_style
|
|
line_path = [
|
|
[ 'M', [boxW + boxD + boxW + boxD - thck, 0]],
|
|
[ 'L', [boxW + boxD + boxW + boxD - thck, boxH]],
|
|
]
|
|
line_atts = { 'style':style, 'id':box_id+'-body-left', 'd':str(Path(line_path)) }
|
|
etree.SubElement(g, inkex.addNS('path','svg'), line_atts )
|
|
|
|
# No Top Option
|
|
if tpsc == "notp":
|
|
if not fingergrepa and not fingergrepb:
|
|
line_path = [
|
|
[ 'M', [0, 0]],
|
|
[ 'L', [boxW, 0]],
|
|
[ 'L', [boxW + boxD, 0]],
|
|
[ 'L', [boxW + boxD + boxW, 0]],
|
|
[ 'L', [boxW + boxD + boxW + boxD - thck, 0]]
|
|
]
|
|
if fingergrepa and not fingergrepb:
|
|
line_path = [
|
|
[ 'M', [0, 0]],
|
|
[ 'L', [boxW / 2 - fingergrepr, 0]],
|
|
[ 'A', [fingergrepr, fingergrepr, 0, 1, 0, boxW - boxW / 2 + fingergrepr, 0]],
|
|
[ 'L', [boxW, 0]],
|
|
[ 'L', [boxW + boxD, 0]],
|
|
[ 'L', [boxW + boxD + boxW / 2 - fingergrepr, 0]],
|
|
[ 'A', [fingergrepr, fingergrepr, 0, 1, 0, boxW + boxD + boxW - boxW / 2 + fingergrepr, 0]],
|
|
[ 'L', [boxW + boxD + boxW, 0]],
|
|
[ 'L', [boxW + boxD + boxW + boxD - thck, 0]]
|
|
]
|
|
if fingergrepa and fingergrepb:
|
|
line_path = [
|
|
[ 'M', [0, 0]],
|
|
[ 'L', [boxW / 2 - fingergrepr, 0]],
|
|
[ 'A', [fingergrepr, fingergrepr, 0, 1, 0, boxW - boxW / 2 + fingergrepr, 0]],
|
|
[ 'L', [boxW, 0]],
|
|
[ 'L', [boxW + boxD / 2 - fingergrepr, 0]],
|
|
[ 'A', [fingergrepr, fingergrepr, 0, 1, 0, boxW + boxD - boxD / 2 + fingergrepr, 0]],
|
|
[ 'L', [boxW + boxD, 0]],
|
|
[ 'L', [boxW + boxD + boxW / 2 - fingergrepr, 0]],
|
|
[ 'A', [fingergrepr, fingergrepr, 0, 1, 0, boxW + boxD + boxW - boxW / 2 + fingergrepr, 0]],
|
|
[ 'L', [boxW + boxD + boxW, 0]],
|
|
[ 'L', [boxW + boxD + boxW + boxD - thck - ( (boxD - thck) / 2 ) - fingergrepr, 0]],
|
|
[ 'A', [fingergrepr, fingergrepr, 0, 1, 0, boxW + boxD + boxW - thck + boxD - ( ( boxD - thck ) / 2 ) + fingergrepr , 0]],
|
|
[ 'L', [boxW + boxD + boxW + boxD - thck, 0]]
|
|
]
|
|
|
|
if not fingergrepa and fingergrepb:
|
|
line_path = [
|
|
[ 'M', [0, 0]],
|
|
[ 'L', [boxW, 0]],
|
|
[ 'L', [boxW + boxD / 2 - fingergrepr, 0]],
|
|
[ 'A', [fingergrepr, fingergrepr, 0, 1, 0, boxW + boxD - boxD / 2 + fingergrepr, 0]],
|
|
[ 'L', [boxW + boxD, 0]],
|
|
[ 'L', [boxW + boxD + boxW, 0]],
|
|
[ 'L', [boxW + boxD + boxW + boxD - thck - ( (boxD - thck) / 2 ) - fingergrepr, 0]],
|
|
[ 'A', [fingergrepr, fingergrepr, 0, 1, 0, boxW + boxD + boxW - thck + boxD - ( ( boxD - thck ) / 2 ) + fingergrepr , 0]],
|
|
[ 'L', [boxW + boxD + boxW + boxD - thck, 0]]
|
|
]
|
|
|
|
|
|
line_atts = { 'style':cut_line_style, 'id':box_id+'-topdraw', 'd':str(Path(line_path)) }
|
|
etree.SubElement(g, inkex.addNS('path','svg'), line_atts )
|
|
|
|
# No Bottom Option
|
|
if btsc == "nobt":
|
|
if not fingergrepa and not fingergrepb:
|
|
line_path = [
|
|
[ 'M', [0, boxH]],
|
|
[ 'L', [boxW, boxH]],
|
|
[ 'L', [boxW + boxD, boxH]],
|
|
[ 'L', [boxW + boxD + boxW, boxH]],
|
|
[ 'L', [boxW + boxD + boxW + boxD - thck, boxH]]
|
|
]
|
|
if fingergrepa and not fingergrepb:
|
|
line_path = [
|
|
[ 'M', [0, boxH]],
|
|
[ 'L', [boxW / 2 - fingergrepr, boxH]],
|
|
[ 'A', [fingergrepr, fingergrepr, 0, 1, 1, boxW - boxW / 2 + fingergrepr, boxH]],
|
|
[ 'L', [boxW, boxH]],
|
|
[ 'L', [boxW + boxD, boxH]],
|
|
[ 'L', [boxW + boxD + boxW / 2 - fingergrepr, boxH]],
|
|
[ 'A', [fingergrepr, fingergrepr, 0, 1, 1, boxW + boxD + boxW - boxW / 2 + fingergrepr, boxH]],
|
|
[ 'L', [boxW + boxD + boxW, boxH]],
|
|
[ 'L', [boxW + boxD + boxW + boxD - thck, boxH]],
|
|
[ 'M', [0, boxH]]
|
|
]
|
|
if fingergrepa and fingergrepb:
|
|
line_path = [
|
|
[ 'M', [0, boxH]],
|
|
[ 'L', [boxW / 2 - fingergrepr, boxH]],
|
|
[ 'A', [fingergrepr, fingergrepr, 0, 1, 1, boxW - boxW / 2 + fingergrepr, boxH]],
|
|
[ 'L', [boxW, boxH]],
|
|
[ 'L', [boxW + boxD / 2 - fingergrepr, boxH]],
|
|
[ 'A', [fingergrepr, fingergrepr, 0, 1, 1, boxW + boxD - boxD / 2 + fingergrepr, boxH]],
|
|
[ 'L', [boxW + boxD, boxH]],
|
|
[ 'L', [boxW + boxD + boxW / 2 - fingergrepr, boxH]],
|
|
[ 'A', [fingergrepr, fingergrepr, 0, 1, 1, boxW + boxD + boxW - boxW / 2 + fingergrepr, boxH]],
|
|
[ 'L', [boxW + boxD + boxW, boxH]],
|
|
[ 'L', [boxW + boxD + boxW + boxD - thck - ( (boxD - thck) / 2 ) - fingergrepr, boxH]],
|
|
[ 'A', [fingergrepr, fingergrepr, 0, 1, 1, boxW + boxD + boxW - thck + boxD - ( ( boxD - thck ) / 2 ) + fingergrepr , boxH]],
|
|
[ 'L', [boxW + boxD + boxW + boxD - thck, boxH]],
|
|
[ 'M', [0, boxH]]
|
|
]
|
|
|
|
if not fingergrepa and fingergrepb:
|
|
line_path = [
|
|
[ 'M', [0, boxH]],
|
|
[ 'L', [boxW, boxH]],
|
|
[ 'L', [boxW + boxD / 2 - fingergrepr, boxH]],
|
|
[ 'A', [fingergrepr, fingergrepr, 0, 1, 1, boxW + boxD - boxD / 2 + fingergrepr, boxH]],
|
|
[ 'L', [boxW + boxD, boxH]],
|
|
[ 'L', [boxW + boxD + boxW, boxH]],
|
|
[ 'L', [boxW + boxD + boxW + boxD - thck - ( (boxD - thck) / 2 ) - fingergrepr, boxH]],
|
|
[ 'A', [fingergrepr, fingergrepr, 0, 1, 1, boxW + boxD + boxW - thck + boxD - ( ( boxD - thck ) / 2 ) + fingergrepr , boxH]],
|
|
[ 'L', [boxW + boxD + boxW + boxD - thck, boxH]],
|
|
[ 'M', [0, boxH]]
|
|
]
|
|
|
|
line_atts = { 'style':cut_line_style, 'id':box_id+'-botdraw', 'd':str(Path(line_path)) }
|
|
etree.SubElement(g, inkex.addNS('path','svg'), line_atts )
|
|
|
|
# Flat Bottom with Lock Flaps
|
|
if btsc == "fwlf":
|
|
desloc = 0
|
|
inicut = boxW + boxD
|
|
if not bfal:
|
|
desloc = boxW + boxD
|
|
inicut = 0
|
|
line_path = [
|
|
[ 'M', [desloc,boxH]],
|
|
[ 'l', [0, boxD]],
|
|
[ 'm', [6, 0]],
|
|
[ 'l', [0, thck * -2]],
|
|
[ 'm', [0, thck]],
|
|
[ 'l', [boxW - 12, 0]],
|
|
[ 'm', [0, thck * -1]],
|
|
[ 'l', [0, thck * 2]],
|
|
[ 'm', [6, 0]],
|
|
[ 'l', [0, boxD * -1]],
|
|
[ 'M', [desloc, boxH]],
|
|
[ 'm', [0, boxD *1]],
|
|
[ 'm', [thck, 0]],
|
|
[ 'l', [lockroff, (boxL - thck)]],
|
|
[ 'l', [boxW - lockroff - lockroff - thck - thck, 0]],
|
|
[ 'l', [lockroff, (boxL - thck) * -1]]
|
|
]
|
|
line_atts = { 'style':cut_line_style, 'id':box_id+'-bothead', 'd':str(Path(line_path)) }
|
|
etree.SubElement(g, inkex.addNS('path','svg'), line_atts )
|
|
|
|
line_path = [
|
|
[ 'M', [desloc, boxH + boxD]],
|
|
[ 'l', [6, 0]],
|
|
[ 'M', [desloc + boxW - 6, boxH + boxD]],
|
|
[ 'l', [6, 0]],
|
|
[ 'M', [desloc,boxH + thck]],
|
|
[ 'l', [boxW,0]]
|
|
]
|
|
line_atts = { 'style':engrave_line_style, 'id':box_id+'-bothead', 'd':str(Path(line_path)) }
|
|
etree.SubElement(g, inkex.addNS('path','svg'), line_atts )
|
|
|
|
if fingergrepa:
|
|
line_path = [
|
|
["M", [inicut, boxH]],
|
|
["l", [boxW / 2 - fingergrepr, 0]],
|
|
["a", [fingergrepr, fingergrepr, 0, 0, 1, fingergrepr * 2,0]],
|
|
["l", [boxW / 2 - fingergrepr, 0]]
|
|
]
|
|
line_atts = { 'style':cut_line_style, 'id':box_id+'-botcut', 'd':str(Path(line_path)) }
|
|
etree.SubElement(g, inkex.addNS('path','svg'), line_atts )
|
|
if not fingergrepa:
|
|
line_path = [
|
|
["M", [inicut, boxH]],
|
|
["l", [boxW, 0]]
|
|
]
|
|
line_atts = { 'style':cut_line_style, 'id':box_id+'-botcut', 'd':str(Path(line_path)) }
|
|
etree.SubElement(g, inkex.addNS('path','svg'), line_atts )
|
|
|
|
|
|
# Flat Top with Lock Flaps
|
|
if tpsc == "fwlf":
|
|
desloc = 0
|
|
inicut = boxW + boxD
|
|
if not tfal:
|
|
desloc = boxW + boxD
|
|
inicut = 0
|
|
line_path = [
|
|
[ 'M', [desloc,0]],
|
|
[ 'l', [0, boxD * -1]],
|
|
[ 'm', [6, 0]],
|
|
[ 'l', [0, thck * 2]],
|
|
[ 'm', [0, thck * -1]],
|
|
[ 'l', [boxW - 12, 0]],
|
|
[ 'm', [0, thck]],
|
|
[ 'l', [0, thck * -2]],
|
|
[ 'm', [6, 0]],
|
|
[ 'l', [0, boxD]],
|
|
[ 'M', [desloc, 0]],
|
|
[ 'm', [0, boxD *-1]],
|
|
[ 'm', [thck, 0]],
|
|
[ 'l', [lockroff, (boxL - thck) * -1]],
|
|
[ 'l', [boxW - lockroff - lockroff - thck - thck, 0]],
|
|
[ 'l', [lockroff, (boxL - thck)]]
|
|
|
|
]
|
|
line_atts = { 'style':cut_line_style, 'id':box_id+'-tophead', 'd':str(Path(line_path)) }
|
|
etree.SubElement(g, inkex.addNS('path','svg'), line_atts )
|
|
|
|
line_path = [
|
|
[ 'M', [desloc, boxD * -1]],
|
|
[ 'l', [6, 0]],
|
|
[ 'M', [desloc + boxW - 6, boxD * -1]],
|
|
[ 'l', [6, 0]],
|
|
[ 'M', [desloc,thck * -1]],
|
|
[ 'l', [boxW,0]]
|
|
]
|
|
line_atts = { 'style':engrave_line_style, 'id':box_id+'-tophead', 'd':str(Path(line_path)) }
|
|
etree.SubElement(g, inkex.addNS('path','svg'), line_atts )
|
|
|
|
if fingergrepa:
|
|
line_path = [
|
|
["M", [inicut,0]],
|
|
["l", [boxW / 2 - fingergrepr, 0]],
|
|
["a", [fingergrepr, fingergrepr, 0, 0, 0, fingergrepr * 2,0]],
|
|
["l", [boxW / 2 - fingergrepr, 0]]
|
|
]
|
|
line_atts = { 'style':cut_line_style, 'id':box_id+'-topcut', 'd':str(Path(line_path)) }
|
|
etree.SubElement(g, inkex.addNS('path','svg'), line_atts )
|
|
if not fingergrepa:
|
|
line_path = [
|
|
["M", [inicut,0]],
|
|
["l", [boxW, 0]]
|
|
]
|
|
line_atts = { 'style':cut_line_style, 'id':box_id+'-topcut', 'd':str(Path(line_path)) }
|
|
etree.SubElement(g, inkex.addNS('path','svg'), line_atts )
|
|
|
|
# Rounded Bottom with Lock Flaps
|
|
if btsc == "rwlf":
|
|
desloc = 0
|
|
inicut = boxW + boxD
|
|
if not bfal:
|
|
desloc = boxW + boxD
|
|
inicut = 0
|
|
line_path = [
|
|
[ 'M', [desloc,boxH]],
|
|
[ 'l', [0, boxD]],
|
|
[ 'm', [6, 0]],
|
|
[ 'l', [0, thck * -2]],
|
|
[ 'm', [0, thck]],
|
|
[ 'l', [boxW - 12, 0]],
|
|
[ 'm', [0, thck * -1]],
|
|
[ 'l', [0, thck * 2]],
|
|
[ 'm', [6, 0]],
|
|
[ 'l', [0, boxD * -1]],
|
|
[ 'M', [desloc, boxH]],
|
|
[ 'm', [0, boxD]],
|
|
[ 'm', [thck, 0]],
|
|
[ 'a', [lockrr , lockrr, 0, 0, 0, lockroff, (boxL - thck)]],
|
|
[ 'l', [boxW - lockroff - lockroff - thck - thck, 0]],
|
|
[ 'a', [lockrr, lockrr, roto, 0, 0, lockroff, (boxL - thck) * - 1]]
|
|
]
|
|
line_atts = { 'style':cut_line_style, 'id':box_id+'-bothead', 'd':str(Path(line_path)) }
|
|
etree.SubElement(g, inkex.addNS('path','svg'), line_atts )
|
|
|
|
line_path = [
|
|
[ 'M', [desloc, boxH + boxD]],
|
|
[ 'l', [6, 0]],
|
|
[ 'M', [desloc + boxW - 6, boxH + boxD]],
|
|
[ 'l', [6, 0]],
|
|
[ 'M', [desloc,boxH + thck]],
|
|
[ 'l', [boxW,0]]
|
|
]
|
|
line_atts = { 'style':engrave_line_style, 'id':box_id+'-bothead', 'd':str(Path(line_path)) }
|
|
etree.SubElement(g, inkex.addNS('path','svg'), line_atts )
|
|
|
|
if fingergrepa:
|
|
line_path = [
|
|
["M", [inicut,boxH]],
|
|
["l", [boxW / 2 - fingergrepr, 0]],
|
|
["a", [fingergrepr, fingergrepr, 0, 0, 1, fingergrepr * 2,0]],
|
|
["l", [boxW / 2 - fingergrepr, 0]]
|
|
]
|
|
line_atts = { 'style':cut_line_style, 'id':box_id+'-botcut', 'd':str(Path(line_path)) }
|
|
etree.SubElement(g, inkex.addNS('path','svg'), line_atts )
|
|
if not fingergrepa:
|
|
line_path = [
|
|
["M", [inicut,boxH]],
|
|
["l", [boxW, 0]]
|
|
]
|
|
line_atts = { 'style':cut_line_style, 'id':box_id+'-botcut', 'd':str(Path(line_path)) }
|
|
etree.SubElement(g, inkex.addNS('path','svg'), line_atts )
|
|
|
|
# Rounded Top with Lock Flaps
|
|
if tpsc == "rwlf":
|
|
desloc = 0
|
|
inicut = boxW + boxD
|
|
if not tfal:
|
|
desloc = boxW + boxD
|
|
inicut = 0
|
|
line_path = [
|
|
[ 'M', [desloc,0]],
|
|
[ 'l', [0, boxD * -1]],
|
|
[ 'm', [6, 0]],
|
|
[ 'l', [0, thck * 2]],
|
|
[ 'm', [0, thck * -1]],
|
|
[ 'l', [boxW - 12, 0]],
|
|
[ 'm', [0, thck]],
|
|
[ 'l', [0, thck * -2]],
|
|
[ 'm', [6, 0]],
|
|
[ 'l', [0, boxD]],
|
|
[ 'M', [desloc, 0]],
|
|
[ 'm', [0, boxD *-1]],
|
|
[ 'm', [thck, 0]],
|
|
[ 'a', [lockrr , lockrr, 0, 0, 1, lockroff, (boxL - thck) * -1]],
|
|
[ 'l', [boxW - lockroff - lockroff - thck - thck, 0]],
|
|
[ 'a', [lockrr, lockrr, roto, 0, 1, lockroff, (boxL - thck)]]
|
|
]
|
|
line_atts = { 'style':cut_line_style, 'id':box_id+'-tophead', 'd':str(Path(line_path)) }
|
|
etree.SubElement(g, inkex.addNS('path','svg'), line_atts )
|
|
|
|
line_path = [
|
|
[ 'M', [desloc, boxD * -1]],
|
|
[ 'l', [6, 0]],
|
|
[ 'M', [desloc + boxW - 6, boxD * -1]],
|
|
[ 'l', [6, 0]],
|
|
[ 'M', [desloc,thck * -1]],
|
|
[ 'l', [boxW,0]]
|
|
]
|
|
line_atts = { 'style':engrave_line_style, 'id':box_id+'-tophead', 'd':str(Path(line_path)) }
|
|
etree.SubElement(g, inkex.addNS('path','svg'), line_atts )
|
|
if fingergrepa:
|
|
line_path = [
|
|
["M", [inicut,0]],
|
|
["l", [boxW / 2 - fingergrepr, 0]],
|
|
["a", [fingergrepr, fingergrepr, 0, 0, 0, fingergrepr * 2,0]],
|
|
["l", [boxW / 2 - fingergrepr, 0]]
|
|
]
|
|
line_atts = { 'style':cut_line_style, 'id':box_id+'-topcut', 'd':str(Path(line_path)) }
|
|
etree.SubElement(g, inkex.addNS('path','svg'), line_atts )
|
|
if not fingergrepa:
|
|
line_path = [
|
|
["M", [inicut,0]],
|
|
["l", [boxW, 0]]
|
|
]
|
|
line_atts = { 'style':cut_line_style, 'id':box_id+'-topcut', 'd':str(Path(line_path)) }
|
|
etree.SubElement(g, inkex.addNS('path','svg'), line_atts )
|
|
|
|
# HotMelt Top
|
|
if tpsc == "fwnf":
|
|
if tfal:
|
|
cut_line_path = [
|
|
[ 'M', [0, 0]],
|
|
[ 'L', [0, boxD * -1]],
|
|
[ 'L', [boxW, boxD * -1]],
|
|
[ 'L', [boxW, 0]],
|
|
[ 'M', [boxW, boxD * -1 / 2]],
|
|
[ 'M', [boxW + boxD, boxD * -1 / 2]],
|
|
[ 'M', [boxW + boxD, 0]],
|
|
[ 'L', [boxW + boxD, boxD * -1 * hotmeltp]],
|
|
[ 'L', [boxW + boxD + boxW, boxD * -1 * hotmeltp]],
|
|
[ 'L', [boxW + boxD + boxW, 0]],
|
|
[ 'M', [boxW + boxD + boxW, boxD * -1 /2]],
|
|
[ 'M', [boxW + boxD + boxW + boxD - thck, boxD * -1 /2]],
|
|
[ 'M', [boxW + boxD + boxW + boxD - thck, 0]]
|
|
]
|
|
engrave_line_path = [
|
|
[ 'M', [0, 0 - thck]],
|
|
[ 'L', [boxW, 0 - thck]],
|
|
[ 'M', [boxW + boxD, 0 - thck]],
|
|
[ 'L', [boxW + boxD + boxW, 0 - thck]]
|
|
]
|
|
if not tfal:
|
|
cut_line_path = [
|
|
[ 'M', [0, 0]],
|
|
[ 'L', [0, boxD * -1 * hotmeltp]],
|
|
[ 'L', [boxW, boxD * -1 * hotmeltp]],
|
|
[ 'L', [boxW, 0]],
|
|
[ 'M', [boxW, boxD * -1 / 2]],
|
|
[ 'M', [boxW + boxD, boxD * -1 / 2]],
|
|
[ 'M', [boxW + boxD, 0]],
|
|
[ 'L', [boxW + boxD, boxD * -1]],
|
|
[ 'L', [boxW + boxD + boxW, boxD * -1]],
|
|
[ 'L', [boxW + boxD + boxW, 0]],
|
|
[ 'M', [boxW + boxD + boxW, boxD * -1 /2]],
|
|
[ 'M', [boxW + boxD + boxW + boxD - thck, boxD * -1 /2]],
|
|
[ 'M', [boxW + boxD + boxW + boxD - thck, 0]]
|
|
]
|
|
engrave_line_path = [
|
|
[ 'M', [0, 0 - thck]],
|
|
[ 'L', [boxW, 0 - thck]],
|
|
[ 'M', [boxW + boxD, 0 - thck]],
|
|
[ 'L', [boxW + boxD + boxW, 0 - thck]]
|
|
]
|
|
line_atts = { 'style':cut_line_style, 'id':box_id+'-topdraw_cut', 'd':str(Path(cut_line_path)) }
|
|
etree.SubElement(g, inkex.addNS('path','svg'), line_atts )
|
|
line_atts = { 'style':engrave_line_style, 'id':box_id+'-topdraw_engrave', 'd':str(Path(engrave_line_path)) }
|
|
etree.SubElement(g, inkex.addNS('path','svg'), line_atts )
|
|
# HotMelt Bottom
|
|
if btsc == "fwnf":
|
|
if bfal:
|
|
cut_line_path = [
|
|
[ 'M', [0, boxH]],
|
|
[ 'L', [0, boxH + boxD]],
|
|
[ 'L', [boxW, boxH + boxD]],
|
|
[ 'L', [boxW, boxH]],
|
|
[ 'M', [boxW, boxH + boxD / 2]],
|
|
[ 'M', [boxW + boxD, boxH + boxD / 2]],
|
|
[ 'M', [boxW + boxD, boxH]],
|
|
[ 'L', [boxW + boxD, boxH + boxD * hotmeltp]],
|
|
[ 'L', [boxW + boxD + boxW, boxH + boxD * hotmeltp]],
|
|
[ 'L', [boxW + boxD + boxW, boxH]],
|
|
[ 'M', [boxW + boxD + boxW, boxH + boxD /2]],
|
|
[ 'M', [boxW + boxD + boxW + boxD - thck, boxH + boxD /2]],
|
|
[ 'M', [boxW + boxD + boxW + boxD - thck, boxH]]
|
|
|
|
]
|
|
engrave_line_path = [
|
|
[ 'M', [0, boxH + thck]],
|
|
[ 'L', [boxW, boxH + thck]],
|
|
[ 'M', [boxW + boxD, boxH + thck]],
|
|
[ 'L', [boxW + boxD + boxW, boxH + thck]]
|
|
]
|
|
if not bfal:
|
|
cut_line_path = [
|
|
[ 'M', [0, boxH]],
|
|
[ 'L', [0, boxH + boxD * hotmeltp]],
|
|
[ 'L', [boxW, boxH + boxD * hotmeltp]],
|
|
[ 'L', [boxW, boxH]],
|
|
[ 'M', [boxW, boxH + boxD / 2]],
|
|
[ 'M', [boxW + boxD, boxH + boxD / 2]],
|
|
[ 'M', [boxW + boxD, boxH]],
|
|
[ 'L', [boxW + boxD, boxH + boxD]],
|
|
[ 'L', [boxW + boxD + boxW, boxH + boxD]],
|
|
[ 'L', [boxW + boxD + boxW, boxH]],
|
|
[ 'M', [boxW + boxD + boxW, boxH + boxD /2]],
|
|
[ 'M', [boxW + boxD + boxW + boxD - thck, boxH + boxD /2]],
|
|
[ 'M', [boxW + boxD + boxW + boxD - thck, boxH]]
|
|
]
|
|
engrave_line_path = [
|
|
[ 'M', [0, boxH + thck]],
|
|
[ 'L', [boxW, boxH + thck]],
|
|
[ 'M', [boxW + boxD, boxH + thck]],
|
|
[ 'L', [boxW + boxD + boxW, boxH + thck]]
|
|
]
|
|
line_atts = { 'style':cut_line_style, 'id':box_id+'-botdraw_cut', 'd':str(Path(cut_line_path)) }
|
|
etree.SubElement(g, inkex.addNS('path','svg'), line_atts )
|
|
line_atts = { 'style':engrave_line_style, 'id':box_id+'-botdraw_engrave', 'd':str(Path(engrave_line_path)) }
|
|
etree.SubElement(g, inkex.addNS('path','svg'), line_atts )
|
|
thck2 = thck / 2
|
|
|
|
# Top Glue Flaps
|
|
if tpsc != "notp":
|
|
desclock = thck
|
|
if tpsc == "fwnf":
|
|
desclock = 0
|
|
if tfal:
|
|
cut_line_path = [
|
|
[ 'M', [boxW, 0]],
|
|
[ 'l', [0, glueflapinoff * -1]],
|
|
[ 'l', [glueflapin45, glueflapin45 * -1]],
|
|
[ 'l', [glueflapindesl, ((boxD + boxL) / 2 - glueflapinoff - glueflapin45) * -1 + thck2]],
|
|
[ 'M', [boxW + boxD, 0]],
|
|
[ 'l', [desclock * -1, 0]],
|
|
[ 'l', [0, glueflapouoff * -1]],
|
|
[ 'l', [glueflapou45 * -1, glueflapou45 * -1]],
|
|
[ 'l', [glueflapoudesl * -1, ((boxD + boxL) / 2 - glueflapouoff - glueflapou45) * -1 + thck2]],
|
|
[ 'l', [(boxD - glueflapindesl - glueflapoudesl - glueflapin45 - glueflapou45 - desclock) * -1, 0]],
|
|
[ 'M', [boxW + boxW + boxD + boxD - thck, 0]],
|
|
[ 'l', [0, glueflapinoff * -1]],
|
|
[ 'l', [glueflapin45 * -1, glueflapin45 * -1]],
|
|
[ 'l', [glueflapindesl * -1, ((boxD + boxL) / 2 - glueflapinoff - glueflapin45) * -1 + thck2]],
|
|
[ 'M', [boxW + boxD + boxW, 0]],
|
|
[ 'l', [desclock, 0]],
|
|
[ 'l', [0, glueflapouoff * -1]],
|
|
[ 'l', [glueflapou45, glueflapou45 * -1]],
|
|
[ 'l', [glueflapoudesl, ((boxD + boxL) / 2 - glueflapouoff - glueflapou45) * -1 + thck2]],
|
|
[ 'l', [(boxD - glueflapindesl - glueflapoudesl - glueflapin45 - glueflapou45 - desclock -thck ), 0]]
|
|
]
|
|
engrave_line_path = [
|
|
[ 'M', [boxW, 0]],
|
|
[ 'l', [boxD - desclock, 0]],
|
|
[ 'M', [boxW + boxD + boxW + desclock, 0]],
|
|
[ 'l', [boxD - thck - desclock, 0]]
|
|
]
|
|
|
|
if not tfal:
|
|
cut_line_path = [
|
|
[ 'M', [boxW + boxD, 0]],
|
|
[ 'l', [0, glueflapinoff * -1]],
|
|
[ 'l', [glueflapin45 * -1, glueflapin45 * -1]],
|
|
[ 'l', [glueflapindesl * -1, ((boxD + boxL) / 2 - glueflapinoff - glueflapin45) * -1 + thck2]],
|
|
[ 'M', [boxW, 0]],
|
|
[ 'l', [desclock, 0]],
|
|
[ 'l', [0, glueflapouoff * -1]],
|
|
[ 'l', [glueflapou45, glueflapou45 * -1]],
|
|
[ 'l', [glueflapoudesl, ((boxD + boxL) / 2 - glueflapouoff - glueflapou45) * -1 + thck2]],
|
|
[ 'l', [(boxD - glueflapindesl - glueflapoudesl - glueflapin45 - glueflapou45 - desclock), 0]],
|
|
[ 'M', [boxW + boxD + boxW, 0]],
|
|
[ 'l', [0, glueflapinoff * -1]],
|
|
[ 'l', [glueflapin45, glueflapin45 * -1]],
|
|
[ 'l', [glueflapindesl, ((boxD + boxL) / 2 - glueflapinoff - glueflapin45) * -1 + thck2]],
|
|
[ 'M', [boxW + boxD + boxW + boxD - thck, 0]],
|
|
[ 'l', [desclock * -1, 0]],
|
|
[ 'l', [0, glueflapouoff * -1]],
|
|
[ 'l', [glueflapou45 * -1, glueflapou45 * -1]],
|
|
[ 'l', [glueflapoudesl * -1, ((boxD + boxL) / 2 - glueflapouoff - glueflapou45) * -1 + thck2]],
|
|
[ 'l', [(boxD - glueflapindesl - glueflapoudesl - glueflapin45 - glueflapou45 - desclock -thck) * -1, 0]]
|
|
]
|
|
engrave_line_path = [
|
|
[ 'M', [boxW + desclock, 0]],
|
|
[ 'l', [boxD - desclock, 0]],
|
|
[ 'M', [boxW + boxD + boxW, 0]],
|
|
[ 'l', [boxD -thck - desclock, 0]]
|
|
]
|
|
|
|
line_atts = { 'style':cut_line_style, 'id':box_id+'-topglueflap_cut', 'd':str(Path(cut_line_path)) }
|
|
etree.SubElement(g, inkex.addNS('path','svg'), line_atts )
|
|
line_atts = { 'style':engrave_line_style, 'id':box_id+'-topglueflap_engrave', 'd':str(Path(engrave_line_path)) }
|
|
etree.SubElement(g, inkex.addNS('path','svg'), line_atts )
|
|
|
|
|
|
# Bottom Glue Flaps
|
|
if not usetop:
|
|
glueflapinoff = bglueflapinoff
|
|
glueflapin45 = bglueflapin45
|
|
glueflapindesl = bglueflapindesl
|
|
glueflapouoff = bglueflapouoff
|
|
glueflapou45 = bglueflapou45
|
|
glueflapoudesl = bglueflapoudesl
|
|
|
|
if btsc != "nobt":
|
|
desclock = thck
|
|
if btsc == "fwnf":
|
|
desclock = 0
|
|
if bfal:
|
|
cut_line_path = [
|
|
[ 'M', [boxW, boxH]],
|
|
[ 'l', [0, glueflapinoff]],
|
|
[ 'l', [glueflapin45, glueflapin45]],
|
|
[ 'l', [glueflapindesl, ((boxD + boxL) / 2 - glueflapinoff - glueflapin45) -thck2]],
|
|
[ 'M', [boxW + boxD, boxH]],
|
|
[ 'l', [desclock * -1, 0]],
|
|
[ 'l', [0, glueflapouoff]],
|
|
[ 'l', [glueflapou45 * -1, glueflapou45]],
|
|
[ 'l', [glueflapoudesl * -1, ((boxD + boxL) / 2 - glueflapouoff - glueflapou45) -thck2]],
|
|
[ 'l', [(boxD - glueflapindesl - glueflapoudesl - glueflapin45 - glueflapou45 - desclock) * -1, 0]],
|
|
[ 'M', [boxW + boxW + boxD + boxD - thck, boxH]],
|
|
[ 'l', [0, glueflapinoff]],
|
|
[ 'l', [glueflapin45 * -1, glueflapin45]],
|
|
[ 'l', [glueflapindesl * -1, ((boxD + boxL) / 2 - glueflapinoff - glueflapin45) - thck2]],
|
|
[ 'M', [boxW + boxD + boxW, boxH]],
|
|
[ 'l', [desclock, 0]],
|
|
[ 'l', [0, glueflapouoff]],
|
|
[ 'l', [glueflapou45, glueflapou45]],
|
|
[ 'l', [glueflapoudesl, ((boxD + boxL) / 2 - glueflapouoff - glueflapou45) -thck2]],
|
|
[ 'l', [(boxD - glueflapindesl - glueflapoudesl - glueflapin45 - glueflapou45 - desclock -thck ), 0]]
|
|
]
|
|
engrave_line_path = [
|
|
[ 'M', [boxW, boxH]],
|
|
[ 'l', [boxD - desclock, 0]],
|
|
[ 'M', [boxW + boxD + boxW + desclock, boxH]],
|
|
[ 'l', [boxD - thck - desclock, 0]]
|
|
]
|
|
|
|
if not bfal:
|
|
cut_line_path = [
|
|
[ 'M', [boxW + boxD, boxH]],
|
|
|
|
[ 'l', [0, glueflapinoff]],
|
|
[ 'l', [glueflapin45 * -1, glueflapin45]],
|
|
[ 'l', [glueflapindesl * -1, ((boxD + boxL) / 2 - glueflapinoff - glueflapin45) - thck2]],
|
|
[ 'M', [boxW, boxH]],
|
|
[ 'l', [desclock, 0]],
|
|
[ 'l', [0, glueflapouoff]],
|
|
[ 'l', [glueflapou45, glueflapou45]],
|
|
[ 'l', [glueflapoudesl, ((boxD + boxL) / 2 - glueflapouoff - glueflapou45) - thck2]],
|
|
[ 'l', [(boxD - glueflapindesl - glueflapoudesl - glueflapin45 - glueflapou45 - desclock), 0]],
|
|
[ 'M', [boxW + boxD + boxW, boxH]],
|
|
[ 'l', [0, glueflapinoff]],
|
|
[ 'l', [glueflapin45, glueflapin45]],
|
|
[ 'l', [glueflapindesl, ((boxD + boxL) / 2 - glueflapinoff - glueflapin45) - thck2]],
|
|
[ 'M', [boxW + boxD + boxW + boxD - thck, boxH]],
|
|
[ 'l', [desclock * -1, 0]],
|
|
[ 'l', [0, glueflapouoff]],
|
|
[ 'l', [glueflapou45 * -1, glueflapou45]],
|
|
[ 'l', [glueflapoudesl * -1, ((boxD + boxL) / 2 - glueflapouoff - glueflapou45) - thck2]],
|
|
[ 'l', [(boxD - glueflapindesl - glueflapoudesl - glueflapin45 - glueflapou45 - desclock -thck) * -1, 0]]
|
|
]
|
|
engrave_line_path = [
|
|
[ 'M', [boxW + desclock, boxH]],
|
|
[ 'l', [boxD - desclock, 0]],
|
|
[ 'M', [boxW + boxD + boxW, boxH]],
|
|
[ 'l', [boxD -thck - desclock, 0]]
|
|
]
|
|
|
|
line_atts = { 'style':cut_line_style, 'id':box_id+'-botglueflap_cut', 'd':str(Path(cut_line_path)) }
|
|
etree.SubElement(g, inkex.addNS('path','svg'), line_atts )
|
|
line_atts = { 'style':engrave_line_style, 'id':box_id+'-botglueflap_engrave', 'd':str(Path(engrave_line_path)) }
|
|
etree.SubElement(g, inkex.addNS('path','svg'), line_atts )
|
|
|
|
|
|
if __name__ == '__main__':
|
|
inkpacking().run() |