39

I have a plane consisting of 4 squares - take as an example a subdivided plane. How can I merge these faces into one?

ideasman42
  • 47,387
  • 10
  • 141
  • 223
Aidan Pallian
  • 1,889
  • 5
  • 27
  • 41

3 Answers3

54

There is an operator called Dissolve which does exactly what you want.

Select everything, with A, and then press X (or Delete) and select Limited dissolve. This will do the same thing as above, but will not require you to select the proper vertices manually.

enter image description here

ideasman42
  • 47,387
  • 10
  • 141
  • 223
someonewithpc
  • 12,381
  • 6
  • 55
  • 89
24

so long as the faces are surrounded by more geometry, using f for Make Edge/Face works well. For a whole simple sub-divided plane like the example given, this tool will make a mess.

enter image description here

MarcClintDion
  • 9,641
  • 5
  • 32
  • 58
0

I found that it is sometime more efficient to use x in edit mode then Disolve edge.

Let's convert this curve into mesh with ALT+ C:

enter image description here

You end up with the following mesh.

enter image description here

This mesh will be hard to process because it has holes. for example, f simply doesn't work. Using Limited disolve will not work well too, here is the best result I can get using this method :

enter image description here

Disolve edge is interesting because you can process the mesh multiple times without changing the whole shape. Here is the result I obtain after two Disolve Edge :

enter image description here

snoob dogg
  • 368
  • 1
  • 2
  • 16