14

I know that you can triangulate a selected portion of a mesh in Edit Mode by hitting CtrlT. This converts all quads and n-gons into tris. How how can this be reversed, combining coplanar triangles into quads and n-gons?

Keavon
  • 8,003
  • 17
  • 48
  • 84

4 Answers4

20

You can untriangulate the selected portion of a mesh by hitting AltJ. This will only create quads so some manual cleanup may be necessary if you need n-gons. You can do this by selecting the leftover edges and hitting X and clicking Dissolve Edges.

Keavon
  • 8,003
  • 17
  • 48
  • 84
9

You can use the decimate modifier using the planar option and apply it. decimate modifier

pink vertex
  • 9,896
  • 1
  • 25
  • 44
2
import bpy
bpy.ops.object.editmode_toggle()
bpy.ops.mesh.select_all(action='SELECT')
bpy.ops.mesh.tris_convert_to_quads()
1

You can also do it through Blender's Python API if you want to get quads:

bpy.ops.mesh.tris_convert_to_quads()
Amir
  • 3,074
  • 2
  • 29
  • 55