0

I want to create sewer pipes where a player can walk inside on a 3D game. Then I'm trying to make them by multiple cylinders like this.

enter image description here

Now I have two problems. First, I don't know how to cut A's edge.

enter image description here

The other is how to cut B's side faces.

enter image description here

I tried to do that by boolean modifier, but it didn't work. So will anyone tell me how to do that? Thanks.

gogogogogo
  • 19
  • 5

1 Answers1

2

This particular issue arises in the old boolean solver. The issue is that these shapes are exactly the same size and their points are coplanar. The solver doesn't correctly eliminate all the faces.

enter image description here

2.91 introduced an exact solver that can be activated with a button in the modifier box, it is for these situations.

enter image description here

enter image description here

Allen Simpson
  • 13,493
  • 2
  • 15
  • 57