-rw-r--r-- | delta.jscad | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/delta.jscad b/delta.jscad index a1be156..5c63b41 100644 --- a/delta.jscad +++ b/delta.jscad @@ -599,7 +599,7 @@ function duet() { var pholes = new CSG.Properties(); var hx = C.hole_spacing.x/2; var hy = C.hole_spacing.y/2; - var hh = { nw: [1,-1], ne: [1,1], se: [-1,1], sw: [-1,-1] }; + var hh = { nw: [-1,1], ne: [1,1], se: [1,-1], sw: [-1,-1] }; var holes = []; for(w in hh) { var h = hh[w],_x=h[0]*hx,_y=h[1]*hy; |