top | item 20406772

(no title)

br1 | 6 years ago

Any intuition that justifies the diamond shape? In sharks each diamond is a scale, but maybe a regular rectangular pattern works just as well.

discuss

order

nkoren|6 years ago

In 3D characters animation, everything needs to be decomposed into "quads". Polygonal faces with more than 4 sides start behaving really weirdly under deformation -- there's more than one solution for how the resulting surface should be shaped -- whereas "quads" behave in a totally predictable fashion. I suspect that similar issues are at play here. You want the skin to be part of a deformable surface, and you want to minimize stresses during deformation. Hence: use quads.

Doxin|6 years ago

Except in 3d animation you use almost exclusively triangles when actually rendering anything. A quad can be subdivided in two ways to form two triangles leading to unpredictable behaviour.

That said, during modelling you almost exclusively create quads since those lend themselves well to editing with edge loops. The render engine then converts those to (unambiguous) triangles.