# Overhang Angle and When You Actually Need Supports

> The 45-degree rule comes from each layer needing roughly half its width supported by the layer below. Here is where the rule holds, where it breaks, and how to avoid supports by design.

Source: https://freestlviewer.com/blog/overhang-angle-and-supports/  
Published: August 5, 2026 · Updated: August 5, 2026

Supports cost material, print time and post-processing, and they leave marks on
the surface they touch. Knowing which overhangs actually need them — rather
than letting the slicer decide — is one of the highest-value checks you can run
on a model before printing.

## Where the 45 degree rule comes from

An FDM printer lays each layer on top of the previous one. If a layer is offset
sideways from the layer below, part of its extrusion hangs over empty air. As
long as roughly half the width still rests on solid material, the plastic has
somewhere to bond and cool against.

Offsetting each layer by exactly one layer height, with a layer height equal to
about half the extrusion width, produces a 45 degree slope. Past that angle
each layer has progressively less contact underneath. The result is not an
instant failure but a gradual one: first a rough, stringy underside, then
curling as the unsupported plastic cools and contracts, and eventually a
collapse that the nozzle drags around.

This is why the number is a guideline rather than a physical limit. It depends
on layer height, extrusion width, cooling and material.

## How mesh analysers compute overhang ratio

An analyser cannot simulate a print, so it measures geometry instead. Assuming
the build direction is +Z, it looks at each triangle's normal vector: a
downward-facing normal steeper than the threshold marks that triangle as an
overhang. With a 45 degree threshold, the test is whether the normal's Z
component is below `-sin(45°)`, roughly `-0.707`.

Summing the area of the flagged triangles and dividing by the total surface
area gives an area-weighted overhang ratio. Weighting by area matters: a
thousand tiny overhanging triangles on a fillet are much less of a problem than
one large flat downward face.

Two things this measurement cannot know: whether an overhang is a bridge
between two anchored points, and how tall it is. Both matter in practice, which
is why the ratio is a triage signal rather than a verdict.

## Where the rule does not apply

**Bridges.** A flat span between two anchored walls behaves completely
differently from a free overhang. The extrusion is pulled taut between two
points and cools in tension. Most printers bridge 20–50 mm cleanly with good
part cooling, and a bridge is a 90 degree "overhang" that needs no support at
all.

**Short overhangs.** A 2 mm ledge simply does not have enough layers to
accumulate error. Supporting it usually does more surface damage than the
overhang itself.

**Cooling.** PLA solidifies fast and tolerates steep angles. ABS and ASA stay
soft longer in a heated chamber and droop earlier. Resin printing has entirely
different rules, driven by suction forces and cross-sectional area rather than
by drooping.

**The top of a sphere or a hole.** These reach 90 degrees only at a single
tangent line, and the approach to it is gradual. They usually print acceptably
even though a strict angle check flags them.

## Slicer defaults, and why they disagree

Slicers expose the same idea through different reference axes, which is a
common source of confusion. Cura's *Support Overhang Angle* defaults to 45
degrees, where 0 supports everything and 90 supports nothing. PrusaSlicer's
overhang threshold is expressed as the slope angle with 90 degrees meaning
vertical, and ships closer to 55 degrees. Both are adjustable, and both are
conservative on purpose.

If a print failed on an overhang your slicer did not support, lower the
threshold rather than concluding the geometry is unprintable.

## Designing overhangs away

Ordered by how much they typically save:

1. **Reorient the part.** Rotation costs nothing and often removes every
   problematic overhang at once. Check the overhang ratio again after rotating;
   it is the fastest way to compare orientations.
2. **Teardrop holes.** A horizontal circular hole has a 90 degree overhang at
   its top. Replacing the top of the profile with a point or a chamfer removes
   it entirely, which is why teardrop holes are standard in printed brackets.
3. **Chamfer instead of square.** A square shelf overhanging a wall is a 90
   degree overhang. A 45 degree chamfer under it prints unsupported.
4. **Split the model.** Two halves that each print flat, glued afterwards,
   beat one part printed on supports — both in surface quality and in time.

## Checking before you slice

[Mes3D](https://freestlviewer.com/) reports overhang ratio alongside volume, surface area and
watertightness, using the +Z build direction and a 45 degree threshold, so you
can compare orientations before opening a slicer. It pairs naturally with the
[pre-print checklist](https://freestlviewer.com/blog/pre-print-checklist/) and the
[watertightness check](https://freestlviewer.com/blog/watertight-and-manifold-stl-files/).

## Frequently asked questions

### What is the 45 degree rule in 3D printing?

A layer offset from the one below by no more than its own width stays supported by roughly half its area, which is enough to print reliably. That geometry works out to a 45 degree slope from vertical. Steeper than that and each layer has progressively less material under it, so the surface degrades and eventually droops.

### At what angle do I need support material?

As a starting point, surfaces sloping more than 45 degrees from vertical. Cura defaults its support overhang angle to 45 degrees and PrusaSlicer uses a threshold around 55 degrees, both adjustable. Small overhangs, bridges between two anchored points, and slow-cooled materials often print fine well past the nominal limit.

### What does overhang ratio mean in a mesh analyser?

It is the area-weighted fraction of the surface that faces downward steeply enough to need support, assuming the model is printed as oriented with Z up. A ratio near zero means the part prints without supports; a high ratio means either supports or a different orientation.

### How do I avoid supports altogether?

Reorient the part first, since rotation is free and removes more overhangs than any other change. Then design them out: replace horizontal holes with teardrop or diamond profiles, chamfer overhanging edges at 45 degrees instead of leaving them square, and split a model into parts that each print flat and glue together.
