Shoot First · The Craft

Topology

How you build a mesh out of quads, tris and edges matters in some places and not at all in others.

01 — The Basics

What Topology Actually Is

Topology is the arrangement of edges and faces across a surface: the wireframe underneath, not the shape itself. Two models can look identical and have completely different topology.

Quad

4-sided face. The default for anything that will deform, subdivide, or be sculpted. Clean edge flow, clean subdivision.

Triangle

3-sided face. Fine for hard, static surfaces. Everything renders as triangles eventually anyway, quads just get split into two at render time.

N-Gon

5+ sided face. A shortcut on flat, non-deforming areas. Risky near a curve or a bend.

02 — Why It Matters

Edge Flow & Deformation

Good topology follows the direction a surface bends, like muscle fibre following the joint. Bad topology fights the bend, and the surface pinches or collapses.

Bend the elbow
Good topology

Enough edge loops through the joint that the bend eases in gradually, like a real elbow.

Bad topology

Barely any edge loops, so the two halves stay rigid and just hinge at a sharp, faceted kink.

The rule of thumb: edge loops should encircle every joint (elbow, knee, knuckle) and every point of major expression (eyes, mouth). That gives an animator clean deformation instead of a crumpled mesh.
03 — The Real Question

When It Matters, When It Doesn't

The 80/20 of the whole topic. Topology discipline costs time. Only pay it where the model needs to move, subdivide, or hold up in close-up.

Matters a lot

Animated Characters

Anything that bends, blends shapes, or gets a close-up: character bodies, faces, hands, creatures, hero props handled on camera. Clean quad flow around joints and expression areas is mandatory here. Bad topology shows up the moment the rig moves.

Barely matters

Decimated Set Dressing

Background geometry that never deforms and is never seen up close: crowd props, distant buildings, set dressing baked down through a decimate or remesh pass. Triangle soup is fine. Nobody subdivides a rock in the background.

Quick test: will this ever bend, subdivide, or fill the frame? If yes, spend the time on clean topology. If no, decimate it and move on.
04 — Extraordinary Vertices

Poles

A pole is any vertex not surrounded by exactly 4 edges (the "normal" for a clean quad mesh). Poles are where edge flow changes direction, so they aren't bad by default. What matters is where you put them.

4-Pole (normal)

4 edges meeting at a vertex. This is the default, uneventful case. Not a pole in practice, just a regular vertex.

3-Pole

3 edges meeting at a vertex. Creates a pinch. Keep these off areas that deform; they sit best on flat, static geometry.

5-Pole

5 edges meeting at a vertex. The most common and most manageable pole, used constantly to merge or split edge loops.

Unwieldy above ~6

7+ Pole

Past 5 or 6 edges, a pole stops redirecting flow and starts making a mess. Too many faces cram into too small a space, shading breaks into a star-shaped pinch, and the pole won't subdivide cleanly. One of these usually means the edge flow should have been resolved earlier with two smaller poles instead of one big one.

Where poles are safe: flat areas, the middle of a large panel, places that never bend. Where they're dangerous: directly on a joint, down the middle of a face, anywhere close to camera that will deform. A 5-pole placed just off the problem area is the standard fix, high-valence poles (7+) are a sign to split the load across two smaller poles instead.
05 — Faces With 5+ Sides

N-Gons

An n-gon is a face with more than 4 sides. Not an error by itself. The question is the same one from section 3: will this surface ever deform or subdivide?

Usually fine

On a completely flat, non-deforming face, like the back of a wall or the base of a static prop. The n-gon triangulates predictably because there's no curvature to distort.

Avoid

On any curved or subdividing surface. Subdivision surfaces treat n-gons unpredictably, often producing a pinch or a flat patch exactly where you wanted a smooth curve.

06 — Holding a Shape Under Subdivision

Reinforcement Edges

Also called support loops. When you subdivide a mesh, corners round off by default. A reinforcement edge sits near a corner to hold its sharpness through subdivision. The closer it sits, the sharper the corner stays.

The mesh: actual edges
The result: after subdivision
Slide the support loops toward or away from the corner
The trade-off: more support loops, or loops closer to a hard edge, means a sharper surface but a heavier mesh. Only reinforce edges that need to stay crisp: hard panel lines, mechanical parts, the edge of a mouth. Everywhere else, let subdivision round things off.
07 — Geometry That Can't Actually Exist

Non-Manifold Geometry

A manifold surface could exist as a real physical object: every edge borders one or two faces, and every piece connects properly. Non-manifold geometry breaks that rule, usually by accident, and confuses most operations downstream: shading, subdivision, booleans, exporting, 3D printing.

3+ faces on one edge

Three or more faces sharing a single edge. This can happen when two separate pieces of geometry get merged or welded along a seam. Software expects exactly two faces per edge, so a third breaks that assumption.

Bowtie vertex

Two separate faces (or two separate surfaces) touching at a single shared vertex, with no edge connecting them. It looks connected in the viewport but the software sees two unrelated pieces pinched at a point.

Why it matters: non-manifold geometry is a common cause of a broken normal, a failed boolean, a failed 3D print, or a subdivision surface that explodes in one spot. Most 3D packages have a "select non-manifold" tool. Run it before calling a mesh finished.
08 — Before You Move On

Quick Self-Check

Click through this before calling any deforming model finished.

09 — Check Yourself

Five-Question Quiz

Five questions, one at a time. Pick an answer to see if it's right, then move on. One point each.

1. Which face type is the default for anything that will deform, subdivide, or be sculpted?

2. On a character, edge loops should encircle every joint and every…

3. Where does topology discipline barely matter?

4. Which pole is the standard fix, placed just off a problem area?

5. What does a reinforcement (support) edge do under subdivision?

Shoot First · The Craft · Topology