
Back to Lecture Thumbnails

ethanyanjiali

sagoyal
A really neat fact about Bezier Curves is that they can be made by repeated iteractions of the Casteljau Algorithm. This means that we can approximate smooth curves by small interpolations of linear segments.

dan
Fun Fact: Digital design programs like Illustrator transform all generated curves into cubic Bezier curves and all SVG curves can be represented as cubic Bezier curves.

christina
How do we define control point p1/p2 here?
Please log in to leave a comment.
Copyright 2021 Stanford University
Cubic-bezier curve is used in web development at lot to describe the CSS transition: https://www.w3schools.com/cssref/func_cubic-bezier.asp
You could also try it out here: https://cubic-bezier.com/#.07,.87,.83,.67