draw: Fix spelling of Bezier

Sometimes it was "bezier", sometimes "beziér".  Capitalize and put
accent on first e.  https://en.wikipedia.org/wiki/Bézier_curve

Signed-off-by: Larry Clapp <larry@theclapp.org>
This commit is contained in:
Larry Clapp
2019-08-05 11:22:10 -04:00
committed by Elias Naur
parent 276cb104ad
commit a14e818299
2 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -431,7 +431,7 @@ void main() {
vec2 extent = clamp(vec2(vFrom.x, vTo.x), -0.5, 0.5);
// Find the t where the curve crosses the middle of the
// extent, x₀.
// Given the bezier curve with x coordinates P₀, P₁, P₂
// Given the zier curve with x coordinates P₀, P₁, P₂
// where P₀ is at the origin, its x coordinate in t
// is given by:
//