rotate wallBackRight

This commit is contained in:
Octopus Octopus 2022-07-03 14:43:30 -05:00
parent 55cfad28c2
commit a5fde2a412
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ func wallFrontLeft() sdf.SDF3 {
//TODO: ROTATE
func wallBackRight() sdf.SDF3 {
corner := wallCorner()
corner = sdf.Transform2D(corner, sdf.Rotate2d(sdf.DtoR(90)))
corner = sdf.Transform2D(corner, sdf.Rotate2d(sdf.DtoR(270)))
return sdf.Extrude3D(corner, WALLS_HEIGHT)
}