Extending a tube

 From:  Michael Gibson
5162.13 In reply to 5162.12 
Hi Pilou,

> 2 same primitive cylinder Bolean union have only the internal common
> faces dispears but not the common section :)

Yup, that's normal - notice that I did not list cylinder surface combining as one of the special cases that are currently handled ?

It could be possible for that particular case to happen in the future, it would require some modifications to some pretty complex areas of the geometry library though.

In the meantime usually it is possible to solve such things yourself if you want to eliminate internal edges by creating one larger cylinder and trimming it to the proper boundaries.

Also if your 2 cylinders were made up of pieces cut out from one single large cylinder, they will combine in that case since it then is handled by the "same underlying surface" special case. So for example if you draw a tall cylinder, and then cut it in half with a horizontal line to make 2 cylinders that way, if you then boolean union those pieces together it will reform into one single cylinder piece. This can be handy sometimes, because it can sometimes be convenient to carve off a chunk of a model using boolean difference, then do some work on the individual pieces and then when you union it back you will then get surface combining - that's done in the "Crown of clubs" tutorial video for example which is why the final unioned piece does not have extra edges at the bottom of each club where they connect to the bottom part that was carved off from the whole initial revolve.

- Michael