Parting line

파팅라인(형합선)

The faint line on a finished molded or cast part where the two halves of the tool met.

Also known as: Mold split line분할선형합선
···
html
<div class="pl-wrap">
  <svg viewBox="0 0 200 110" class="pl-svg">
    <path class="pl-top" d="M20,55 Q20,20 60,18 Q100,10 140,18 Q180,20 180,55 L180,55 Q140,60 100,60 Q60,60 20,55 Z"/>
    <path class="pl-bot" d="M20,55 Q60,50 100,50 Q140,50 180,55 Q180,90 140,96 Q100,102 60,96 Q20,90 20,55 Z"/>
    <path class="pl-seam" d="M20,55 Q60,60 100,60 Q140,60 180,55"/>
    <text class="pl-label" x="100" y="14" text-anchor="middle">parting line</text>
  </svg>
</div>
css
.pl-wrap{display:flex;align-items:center;justify-content:center;width:100%;height:100%;padding:clamp(8px,3vmin,18px)}
.pl-svg{width:min(92%,420px);height:auto;display:block}
.pl-top{fill:var(--accent);fill-opacity:.5;stroke:var(--fg);stroke-width:1;animation:pl-lift 2.6s ease-in-out infinite}
.pl-bot{fill:var(--accent-3);fill-opacity:.5;stroke:var(--fg);stroke-width:1}
.pl-seam{fill:none;stroke:var(--accent-2);stroke-width:2.2;stroke-linecap:round;animation:pl-flash 2.6s ease-in-out infinite}
.pl-label{font-size:8px;fill:var(--muted);letter-spacing:.03em}
@keyframes pl-lift{0%,55%{transform:translateY(0)}70%{transform:translateY(-9px)}85%,100%{transform:translateY(0)}}
@keyframes pl-flash{0%,55%{opacity:.35}62%,68%{opacity:1}75%,100%{opacity:.35}}

A mold is never perfectly sealed. Where the core and cavity meet there's a gap of a few microns, through which a whisker-thin sliver of material can leak (flash), or a faint microscopic mismatch between the two faces leaves a thread-like line on the part's surface. That line's location is the parting line, and where it goes is decided during tool design — it has to let material fill completely and let the part release without hanging on an undercut (which ties it directly to draft angle).

Parting lines are usually routed along a part's widest cross-section — its "equator" — so the two mold halves can pull straight apart with no undercuts. A designer who knows where this line will fall can avoid putting a logo or a button right on top of it, where the seam would look sloppy — or, just as often, deliberately hide the parting line inside an existing break in the form, like a chamfer running down the side of a case.

It never shows up in a render or a 3D model, but it always shows up on the real, mass-produced part — a textbook case of something that looked perfect on screen getting a visible seam the moment it becomes physical.

When to use

Before placing a visible graphic (a logo, say) on a part that will be injection-molded or die-cast.