diff --git a/docs/index.html b/docs/index.html index 4c180d02..32d2f070 100644 --- a/docs/index.html +++ b/docs/index.html @@ -38,7 +38,7 @@ - + @@ -4977,7 +4977,8 @@ mapped = (x) = │ 1 2 Now, if you look more closely at that right graphic, you'll notice something interesting: if we treat the red line as "the x axis", then the point where the function crosses our line is really just a root for the cubic function x(t) through a shifted "x-axis"... and we've already seen how to calculate roots, so let's just run cubic root finding - and not even the complicated - cubic case either: because of the kind of curve we're starting with, we know there is only root, simplifying the code we need! + cubic case either: because of the kind of curve we're starting with, we know there is at most a single root in the interval + [0,1], simplifying the code we need!
First, let's look at the function for x(t):