How a 3D printer builds a shape
After thiswhat you will be able to doWork out the circular slice a cone needs at each height, and predict how reducing layer height changes excess plastic and the number of passes.
Questionwhat this lesson answersA printer's nozzle can only lay a flat line of plastic within one layer at a time, never a blob straight up into the air. So how does repeating that one flat move build a solid three-dimensional shape?
Not coveredwhat this lesson leaves outWe treat the shape as already sliced and the plastic as laid perfectly. We do not cover how the plastic melts and cools, how the slicing software decides each layer's path, how the first layer sticks to the bed, or what holds up an overhang.
A 3D printer has one tool: a nozzle that squeezes out a thin thread of melted plastic and drags it around a flat bed, the way you pipe a line of icing. That squeezing-out of plastic is called extrusion. The nozzle can move the thread anywhere it likes within a single flat level. What it cannot do is lay plastic in mid-air, because the thread needs something directly underneath to land on and hold it.
Raise a little, then draw again
The whole trick lives in what happens between levels. Once the nozzle finishes drawing on one flat level, it lifts by a small fixed amount and draws again, directly on top of what it just laid. That fixed step, the gap from one level to the next, is the layer height. Call it . On a real printer is around ; here we will keep it large enough to see, from down to .
A solid is a stack of flat circles
Stand a cone point up, tall with a base radius of . Cut it with a flat slice at some height above the bed. The cut face is a circle: wide near the bed, small near the point, and nothing at all right at the tip. Write the radius of that circle as , the outline the nozzle has to trace at height . We define our cone by saying its radius shrinks in a straight line from base to tip,
with and . At the bed , and at the top .
That makes the object simple to describe. The printer draws the circle , steps up by , draws the slightly smaller circle , steps up again, and keeps going to the tip. The cone is nothing more than that stack of circles. Each circle is one layer, the smallest thing the printer knows how to make.
One flat layer
The nozzle can only lay a flat ring in one layer; here is a single disc at the base.
Cone printer
A printed cone is a stack of flat discs
Each layer keeps the radius at its lower edge. The resulting staircase extends beyond the smooth cone, which is why its volume is too large.
- Build height
- 0 mm
- Circle radius here
- 40.0 mm
- Layers
- 10 at 10 mm each
- Stacked vs true volume
- 193,522 vs 167,552 mm³
- Over-estimate
- 15.5%
At build height 0 mm, the circle radius is 40.0 mm. 10 layers are 10 mm each, and the stack over-estimates the volume by 15.5%.
The staircase you agreed to
Drag the build slider and the cone rises circle by circle. Now look at its side. It is not a smooth slope. Every layer holds a single radius for its whole height and then jumps to the next, so the side comes out as a run of little flat steps: a staircase, not a ramp. Each disc keeps the width it had at its lower edge, which is slightly too wide for the true cone anywhere above that edge, so the printed shape sits a little outside the real one the whole way up.
That overshoot is a real cost, and you can measure it. With layers the ten stacked discs hold about 15.5% more plastic than the true cone. Make the layers finer and the steps shrink: layers over-count by 7.6%, by 3.0%, and layers by only 0.8%. How fine the steps are is the print’s resolution, and shrinking buys resolution. It is not free. A layer height needs 200 passes where needed ten, so the same cone takes twenty times as long to print. Every real print picks a spot on that trade: fine enough that the steps stop mattering for the job, coarse enough to finish in a sensible time.
The shape is its slices
Watching the two views move together is the point. The circle on one side is a single slice; the solid on the other side is the whole stack of them. They are not two separate facts about the cone, they are the same fact drawn two ways. That is the reason a printer built only to draw flat can make a rounded solid at all: a solid just is its slices, and a slice is something flat you already know how to draw. The one thing the printer never gets is the smooth surface between two slices. It only ever gets flat levels and the steps between them, and it makes those steps small enough that you stop noticing.
Doorswhat to read next, and why
- Slicing a mesh into layersnot written yetThis lesson hands you the slices already made. Turning an arbitrary 3D model (a mesh) into that stack of flat outlines is a real algorithm, not something that comes for free.
- Extrusion and coolingnot written yetWe assumed the plastic lands and holds its shape perfectly. Why it melts, sticks to the layer below, and sets without slumping is the material physics this lesson skips.
- Overhangs and supportnot written yetOur cone only ever narrows as it rises, so every layer rests on the one below it. A layer wider than the one beneath has nothing to land on, which is a separate problem entirely.
Symbolswhat each one means, and whether we defined it, measured it, or just started there
- hStatus: defined
- the layer height, the fixed distance the nozzle steps up between one flat level and the next. It is a setting we choose, not something the shape dictates.
- zStatus: defined
- the height above the bed at which we are slicing, which picks out the one circle the nozzle must trace at that level.
- r(z)Status: defined
- the radius of the flat circular slice (the cross-section) at height z, that is, the outline the nozzle draws on the layer sitting at that height.
- RStatus: defined
- the radius of the cone at its base, one of the two numbers we pick to fix the particular cone we are printing.
- HStatus: defined
- the full height of the cone from bed to tip, the other number we pick to fix the cone we are printing.
- one layerStatus: bottoms out
- a single flat pass of plastic at one height, the move this lesson's model takes as its starting point. The doors below open up what actually happens inside one pass.
What these classifications mean
- defined
- circular by construction, true because we chose it
- empirical
- a measured claim about the world that could have come out otherwise
- bottoms out
- a primitive of the model, with nothing under it here
- door
- used here, explained elsewhere