How to Graph Functions with Bézier Curves
Since Bézier curves are so ubiquitous in computer graphics, they are a natural choice for plotting the graph of a
function. At their core, Bézier curves are polynomial in nature, so unless the graph is for a polynomial function with
the same degree as our Bézier curve, we are forced to approximate. In this post, I will detail the thought process
behind my implementation of a Bézier function plotter.
Tags