C.W.K.
Stream
Lesson 01 of 04 · published

Who Was Andrew Loomis

~11 min · andrew-loomis, ball-and-plane, history, method

Level 0Blank Page
0 XP0/35 lessons0/12 achievements
0/100 XP to next level100 XP to go0% complete
"Draw the ball before the face, the box before the car. Loomis didn't invent that idea — he made it teachable."

The Man Behind the Method

Andrew Loomis (1892–1959) was an American commercial illustrator, but he is remembered for what he taught rather than what he advertised. His instructional books — Fun with a Pencil, Figure Drawing for All It's Worth, Drawing the Head and Hands — outlived his advertising work by generations. They went out of print, became near-mythical among artists, and were eventually reprinted because demand never died. When an artist says "the Loomis method" or "a Loomis head," no further explanation is needed. That is a rare kind of legacy: your name becomes a common noun for a way of seeing.

The Ball and the Planes

His head construction is disarmingly simple. Start with a ball for the cranium — the simplest solid that captures the skull's mass. Slice the sides flat where the temples are, turning the sphere into something with real planes to catch light and turn in space. Hang the jaw below it. Divide the face into rhythmic thirds — hairline to brow, brow to nose, nose to chin. That's the whole skeleton, and every feature gets placed relative to it, never floated on its own.

The genius is the order. You establish a solid with a clear orientation first, and only then do eyes, nose, and mouth arrive — landing on planes that already know which way they face.

Why Name an Engine After Him

Loomis the engine is named for Loomis the man because it recovers exactly his scaffold from a photograph. It is not "a face detector that happens to draw circles." It is the Loomis construction — ball, planes, thirds, box — computed from where a real face's features landed. The name is the specification: the engine's job is to reproduce a known, teachable construction system, not to invent a private one. When you can name what your tool computes after the tradition it comes from, you've inherited a spec instead of guessing at one.

Not the Only Map, but the Chosen One

Loomis is not the only construction system — Reilly's rhythms, the Asaro planar head, and others map the same territory differently. The engine anchors on Loomis for two honest reasons: it is the system Dad actually practices, and its ball-planes-thirds decomposition is clean enough to express as geometry. A method you can both draw by hand and compute exactly is the right foundation for an answer key.

Code

The Loomis method, encoded as a solid the engine fits·python
# The engine carries a neutral reference head and the Loomis scaffold on it.
# Everything is expressed in u (brow-to-nose), never pixels -- see the next lessons.
CANONICAL_HEAD = load_obj("canonical_face_model.obj")   # a neutral 3D head

ball        = sphere(center=cranium_center(CANONICAL_HEAD), radius=r_u)  # r in u
side_planes = slice_flat(ball, at=temple_offset_u)     # the flat temples
jaw         = hang_jaw(ball, length=jaw_u)             # the jaw below
thirds      = [hairline, brow, nose_base, chin]        # the rhythmic divisions

# Fitting this solid to where the photo's landmarks actually landed
# is what 'recover the Loomis head' means, concretely.

External links

Exercise

Find one Loomis head diagram (his book, or any construction tutorial that uses the ball-and-plane approach). On a photo of your own face, locate the three pieces: the ball of the cranium, the flat side plane at the temple, and the brow–nose–chin thirds. Notice which one is hardest to see — that's the part your eye currently skips.
Hint
The side plane is the piece most beginners miss: the head is not a smooth egg, it has a distinct flat where the temple is, and that plane is what makes a three-quarter view read as solid instead of round. If you can't find it, that's exactly the seeing the construction method trains.

Progress

Progress is local-only — sign in to sync across devices.
Spotted a bug or have feedback on this page?Report an Issue

Comments 0

🔔 Reply notifications (sign in)
Sign inPlease sign in to comment.

No comments yet — be the first.