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

Construct, Don't Trace

~12 min · construction, tracing, transfer, foreshortening

Level 0Blank Page
0 XP0/35 lessons0/12 achievements
0/100 XP to next level100 XP to go0% complete
"An outline is a shadow the form casts from one angle. Copy the shadow and you've learned the shadow."

The Outline Is a Shadow

Every outline you can trace is a projection: a 3-D form flattened onto the picture plane from one specific viewpoint. It is, quite literally, a shadow of the solid. It is real and it is accurate — but it is accurate only for that one angle, that one moment. The information it throws away is the depth, and depth is exactly what a draughtsman needs.

Why Tracing Doesn't Transfer

Here is the trap that catches every beginner. You trace a reference photo carefully. The result looks great — better than anything you can draw freehand. It feels like progress. Then you try to draw that same face from memory, or turn it fifteen degrees, and you are completely lost. Why? Because you never learned the face. You learned one silhouette of it. Tracing produces a good copy and zero transferable understanding, and the good copy hides the fact that nothing was learned.

Construction Transfers

Now build the solid instead — the ball for the cranium, the box for its orientation, the axes for the features. This is slower and it looks worse at first. But once you understand the head as a solid, you can rotate it in your mind: foreshorten it, tip it back, light it from a new side, draw it from an angle no photo ever showed you. The knowledge generalizes because it is knowledge of the form, not of one of its shadows. That is the entire case for construction over copying: it is the difference between memorizing an answer and understanding the problem.

What This Demands of the Engine

This principle is not just advice for the artist — it shapes the whole engine. Loomis hands you construction, not a pretty traced outline, because the construction is the transferable thing. And it forces a specific design on the grader you'll meet in Track 6: to reward understanding rather than copying, the grader compares your construction to the recovered one after removing position, size, and tilt. It grades whether you saw the solid correctly, not whether you placed your lines on top of the photo's edges. Score the tracing and you reward tracing; score the construction and you reward seeing.

Code

Two ways to score a drawing — only one rewards understanding·python
# Tempting but WRONG: reward lines that overlap the photo's edges.
def trace_score(drawing, photo):
    return edge_overlap(drawing, photo)      # high when you traced accurately

# What Loomis actually does: compare your CONSTRUCTION to the recovered one,
# AFTER removing position / size / tilt, so placement can't earn points.
def construction_score(your_construction, answer_construction):
    a, b = procrustes_align(your_construction, answer_construction)  # kill the pose
    return 1.0 - normalized_distance(a, b)    # high when you saw the solid right

# trace_score rewards copying one shadow.
# construction_score rewards understanding the form. The engine chose the second.

External links

Exercise

Take a simple object — a mug is perfect. Draw it twice from one photo: once by tracing its outline, once by constructing it (a cylinder, two ellipses for the openings, the handle as a bent tube). Now close the photo and draw the same mug tilted to a new angle from memory. Which method let you do it, and which one left you guessing?
Hint
The traced version will look better than the constructed one — right up until the moment you have to rotate the mug. Then the cylinder-and-ellipses understanding is the only one that carries you, because you're drawing the solid, not recalling a silhouette. That gap is the whole lesson.

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.