From 2fa07190ff898e5fad1bc4ff48b835d0b55b9cf3 Mon Sep 17 00:00:00 2001 From: Florian Festi Date: Sun, 5 Feb 2017 16:30:37 +0100 Subject: [PATCH] Fix finger joint setting defaults space and width got mixed up in 8d754c3855a3792767524d98f37629834ce05a1c --- boxes/edges.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/boxes/edges.py b/boxes/edges.py index 9a22ce9..9faa71d 100644 --- a/boxes/edges.py +++ b/boxes/edges.py @@ -496,11 +496,12 @@ Values: * absolute * surroundingspaces : 2 : maximum space at the start and end in multiple of normal spaces + * angle: 90 : Angle of the walls meeting * relative (in multiples of thickness) - * space : 1.0 : space between fingers - * finger : 1.0 : width of the fingers + * space : 2.0 : space between fingers + * finger : 2.0 : width of the fingers * width : 1.0 : width of finger holes * edge_width : 1.0 : space below holes of FingerHoleEdge * play : 0.0 : extra space to allow movement @@ -513,9 +514,9 @@ Values: } relative_params = { - "space": 1.0, + "space": 2.0, "finger": 2.0, - "width": 2.0, + "width": 1.0, "edge_width": 1.0, "play" : 0.0, }