Bézier Curve — Definition, Formula & Examples
A Bézier curve is a smooth curve whose shape is determined by a set of control points. By adjusting these control points, you control how the curve bends between its start and end points.
A Bézier curve of degree is a parametric curve defined by for , where are the control points and are binomial coefficients. The curve interpolates and and is tangent to the control polygon at those endpoints.
Key Formula
Where:
- = Parameter ranging from 0 to 1 that traces the curve from start to end
- = Starting control point (the curve begins here)
- = Middle control point that influences the curve's bend
- = Ending control point (the curve ends here)
How It Works
You place control points in the plane, then evaluate the Bézier formula at values of from 0 to 1 to trace out the curve. At the curve starts at the first control point, and at it ends at the last. The intermediate control points pull the curve toward themselves without the curve necessarily passing through them. A quadratic Bézier has 3 control points (degree 2), and a cubic Bézier has 4 (degree 3). Cubic Bézier curves are the standard in font design and vector graphics software.
Worked Example
Problem: Find the point on a quadratic Bézier curve at t = 0.5, given control points P₀ = (0, 0), P₁ = (2, 4), and P₂ = (4, 0).
Step 1: Write the quadratic Bézier formula and substitute t = 0.5.
Step 2: Evaluate each coefficient: and .
Step 3: Multiply and add the components.
Answer: At t = 0.5, the curve passes through the point (2, 2). Notice this is directly below P₁ = (2, 4) — the curve is pulled toward the middle control point but does not reach it.
Why It Matters
Bézier curves are the backbone of vector graphics tools like Adobe Illustrator and font rendering engines. In computer science and engineering courses, they introduce parametric equations, polynomial blending, and the connection between algebra and visual design.
Common Mistakes
Mistake: Assuming the curve passes through all control points.
Correction: A Bézier curve only guaranteed passes through the first and last control points. The intermediate control points influence the shape but generally are not on the curve.
