Number of vertices and number of triangles in modern game

Started by
4 comments, last by 313230 11 years, 3 months ago

Which is more?

Is that number of vertices always triples the number of triangles?


Thanks

Advertisement

No, vertices can be shared between adjacent triangles, as long as all attributes match (position, normal, uv, whatever). For example, vertices along a 'hard edge' (not shared normals) are not shared between adjacent triangles. At maximum, numVertices = numTriangles*3, but there is as much sharing as possible.

You always have more vertices than triangles (assuming all your geometry is made up of triangles), but it is possible to reuse vertices between triangles (by having all triangles with a common vertex or by having consecutive triangles share 2 of their vertices) so there can be less than three vertices per triangle.
You always have more vertices than triangles (assuming all your geometry is made up of triangles)

Even that's not true. An icosahedron has 12 vertices but 20 triangles.
You always have more vertices than triangles (assuming all your geometry is made up of triangles)

Not only is that false, but it's actually opposite of the common case. Typically you have more triangles than vertices.

Many thanks

This topic is closed to new replies.

Advertisement