magazinefile.py: Export thickness param and adjust canvas size
This commit is contained in:
parent
4ce2681b32
commit
be3ae6afeb
|
@ -3,10 +3,10 @@
|
||||||
from boxes import *
|
from boxes import *
|
||||||
|
|
||||||
class Box(Boxes):
|
class Box(Boxes):
|
||||||
def __init__(self, x, y, h, h2):
|
def __init__(self, x, y, h, h2, thickness=4.0):
|
||||||
self.x, self.y, self.h, self.h2 = x, y, h, h2
|
self.x, self.y, self.h, self.h2 = x, y, h, h2
|
||||||
Boxes.__init__(self, width=x+y+40, height=y+2*h+50,
|
Boxes.__init__(self, width=x+y+8*thickness, height=x+h+h2+4*thickness,
|
||||||
thickness=4.0)
|
thickness=thickness)
|
||||||
|
|
||||||
def side(self, w, h, h2):
|
def side(self, w, h, h2):
|
||||||
r = min(h-h2, w) / 2.0
|
r = min(h-h2, w) / 2.0
|
||||||
|
|
Loading…
Reference in New Issue