1
0
mirror of https://github.com/Pomax/BezierInfo-2.git synced 2025-08-31 20:11:59 +02:00

yay more typos

This commit is contained in:
Pomax
2019-03-28 10:24:10 -07:00
parent 6c7012f0ea
commit 876267a21e
6 changed files with 6 additions and 6 deletions

View File

@@ -46,7 +46,7 @@ function kappa(t, B):
dy = d.getY(t)
ddx = dd.getX(t)
ddy = dd.getY(t)
numerator = dx * ddy - dxx * y
numerator = dx * ddy - ddx * dy
denominator = pow(dx*dx + dy*dy, 1.5)
return numerator / denominator
```