Pomax
Pomax
Using a new LaTeX conversion approach, Chinese in LaTeX is now possible, leading to things like this:  @thrillerist does this look like a thing that would be worth...
I tried to read the primer on an Asus Zenpad, which is a 10" diagonal tablet, and a Nexus 6P, a 6" diagonal phone, and the experience is not pleasant...
ex: - arc approx: try three points, keep spacing them out until your error is too big. Repeat. - offset: try a segment. If errors are too big, subdivide and...
Right now there is no mention of what a degenerate curve is, and why you'd want to make sure to check to see if a curve is proper or degenerate.
no point in having social decorators in a print out.
from https://news.ycombinator.com/item?id=11403009, it should be worth giving Hobby splines a read-up, to see if it makes sense to add them to the primer.
Right now the primer explains sampling the curve and then lerping, but http://stackoverflow.com/questions/35275073/uniform-discretization-of-bezier-curve suggests that cubic interpolation has a much lower error across the curve's interval.
They're currently quadratics, which is kind of silly.

People see this: ``` new Bezier(150,40 , 80,30 , 105,150); var draw = function() { this.drawSkeleton(curve); this.drawCurve(curve); } ``` and think that somehow those draw functions come with bezier.js That...