From 7c6b731feb511164254bc886aa546441aa7dfd58 Mon Sep 17 00:00:00 2001 From: Octopus Octopus Date: Sun, 3 Jul 2022 15:19:07 -0500 Subject: [PATCH] thicken inner wall --- fightstick/body2D.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fightstick/body2D.go b/fightstick/body2D.go index a3c0a36..fd40529 100644 --- a/fightstick/body2D.go +++ b/fightstick/body2D.go @@ -68,7 +68,7 @@ func bottomPlane() sdf.SDF2 { } func innerWallPlane() sdf.SDF2 { - wall := sdf.Box2D(v2.Vec{X: 6, Y: BODY_SIZE_Y}, 0) + wall := sdf.Box2D(v2.Vec{X: 12, Y: BODY_SIZE_Y}, 0) wall = sdf.Difference2D(wall, screwHoles())