Draft angle

드래프트 앵글(구배각)

A slight taper deliberately added to a mold's vertical walls so the finished part releases without scraping or sticking.

Also known as: Mold draft구배이형 구배
···
html
<div class="da-wrap">
  <div class="da-col">
    <div class="da-scene">
      <div class="da-mold da-mold-top"></div>
      <div class="da-part da-part-draft"></div>
      <div class="da-mold da-mold-bot"></div>
    </div>
    <span class="da-cap">draft 3° — releases clean</span>
  </div>
  <div class="da-col">
    <div class="da-scene">
      <div class="da-mold da-mold-top"></div>
      <div class="da-part da-part-none"></div>
      <div class="da-mold da-mold-bot"></div>
    </div>
    <span class="da-cap da-cap-warn">draft 0° — scrapes, jams</span>
  </div>
</div>
css
.da-wrap{display:flex;gap:clamp(10px,5vmin,28px);align-items:stretch;justify-content:center;width:100%;height:100%;padding:clamp(10px,4vmin,20px)}
.da-col{display:flex;flex-direction:column;align-items:center;justify-content:flex-end;width:36%;max-width:170px;height:100%}
.da-scene{position:relative;width:100%;height:66%;display:flex;flex-direction:column;align-items:center;justify-content:flex-end}
.da-mold{width:100%;height:22%;background:var(--muted);opacity:.35;border:1px solid var(--fg);flex-shrink:0}
.da-mold-top{animation:da-open 2.4s ease-in-out infinite}
.da-mold-bot{border-top:none}
.da-part-draft{width:62%;height:34%;background:var(--accent);clip-path:polygon(8% 0,92% 0,100% 100%,0% 100%);animation:da-drop-ok 2.4s ease-in-out infinite;flex-shrink:0}
.da-part-none{width:62%;height:34%;background:var(--accent-2);animation:da-drop-stuck 2.4s ease-in-out infinite;flex-shrink:0}
.da-cap{display:block;margin-top:.5em;font-size:clamp(8px,2.2vmin,11px);color:var(--muted);text-align:center;white-space:nowrap}
.da-cap-warn{color:var(--accent-2)}
@keyframes da-open{0%,20%{transform:translateY(0)}50%,70%{transform:translateY(-38%)}100%{transform:translateY(0)}}
@keyframes da-drop-ok{0%,20%{transform:translateY(0)}50%{transform:translateY(18%)}70%,100%{transform:translateY(0)}}
@keyframes da-drop-stuck{0%,20%{transform:translateY(0) translateX(0)}45%{transform:translateY(2%) translateX(-1.5%)}50%{transform:translateY(1%) translateX(1.5%)}55%{transform:translateY(2%) translateX(-1%)}70%,100%{transform:translateY(0) translateX(0)}}

An injection mold is two halves — core and cavity — that wrap around a part, then separate to release it. If the walls are perfectly vertical (0° draft), the part's surface and the mold wall are pressed together almost like a vacuum seal, so releasing it scrapes the surface or, worse, the part hangs up and tears, or the tool gets damaged. In practice, vertical walls get a small deliberate taper — usually 1–3° — designed in from the start: the wall widens ever so slightly going up, so the moment the mold opens, the wall face pulls itself away from the part surface.

The reason draft matters is friction, not adhesion. The smoother the surface and the deeper the wall, the more draft angle is needed — a textured wall (say, a leather-grain finish) catches on its own texture more easily and needs even more draft. That's why CAD "draft analysis" tools paint a model's faces red (not enough draft) or green (safe), flagging surfaces at risk of not releasing before a mold is ever cut.

A designer who doesn't know this concept renders a perfectly vertical, minimal-looking form, then gets tooling feedback later that the walls need draft and the form has to change slightly. It's worth sketching injection-molded shapes with a barely-visible taper from the very first pass, instead of true verticals.

When to use

When designing vertical walls for an injection-molded or die-cast part — check especially on deep cavities or textured surfaces.