Bézier Curves Visualization

Interactive exploration of Bézier curves - fundamental parametric curves in computer graphics

Curve Type

Animation Controls

Mathematical Formulas

Quadratic Bézier:
Cubic Bézier:
General (n+1 points):

Current Information

Curve Degree: 3
Current t: 0.500
B(t): (0, 0)

Bernstein Polynomials:

What are Bézier Curves?

Bézier curves are parametric curves widely used in computer graphics, animation, CAD/CAM software, and font design. They were developed by Pierre Bézier at Renault in the 1960s for car body design.

Key Properties

Applications

de Casteljau Algorithm

The de Casteljau algorithm is a recursive method for evaluating Bézier curves. At each level, it performs linear interpolation between adjacent points. This geometric construction makes the algorithm numerically stable and provides insight into the curve's structure.

Watch the construction lines animation to see how intermediate points are computed: linearly interpolate between control points at each level until convergence to a single point on the curve.

How to Interact