Why are there always triangles used by drawing surfaces in 3D? And not squares or other shapes?

link|improve this question

feedback

4 Answers

up vote 19 down vote accepted

Triangles can never be non-planar; anything with more than 3 points can be non-planar and thus un-renderable unless converted to triangles.

For example: A square is two triangles that are on the same plane, if all the points that make up the square are co-planar. It takes a lot of calculations to make sure all the points are co-planar, thus all polygons that are greater than 3 points are pre-calculated by decimating them into triangles and tested to make sure all the points are co-planar once, instead of on every frame that gets rendered.

Here is good reference about polygon meshes.

Planar Mesh

Non-Planar Mesh

and one more example that might make it clearer

The non-planar mesh is degenerate and can't be sorted or rendered correctly in any sane manner. Triangles don't have this problem.

Efficiency

Triangles also are very memory efficient and can be sorted, and rendered extremely fast when using Triangle Strips which only need 1 point to be stored for each additional triangle after the first.

and Triangle Fans which is a special case of a Triangle Strip.

link|improve this answer
feedback

Basically any complex (surface) structure can be represented as a bunch of triangles. The triangle is the most atomic and primitive geometry. Hence it is used as base for almost anything. Nevertheless most 3D engines provide you with more complex primitives like spheres, cones, cylinders, donuts, whatnot. Check your libraries documentation.

link|improve this answer
feedback

Since 3 points are the minimum necessary to define a planar surface any shape can be simulated using many triangles, and efficient algorithms exist to rapidly paint triangles onto the screen.

link|improve this answer
1  
Also, if you have more than the minimum for a planar surface then you run the risk of your points not all existing in the same plane, which makes for some funky graphics. – fire.eagle May 23 '11 at 17:29
feedback

Just to quickly add a bit, polygons (and more precisely triangles) is not the only way to render 3D surfaces: check out surfels (http://www.filipvanbouwel.be/master_thesis.php), voxels, etc.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.