So I have a Hermite curve with the control points:
//point# (x,y):
p0 (1,0)
p1 (1,(Math.sqrt(2)-1))
p2 (Math.sqrt(0.5), Math.sqrt(0.5))
I also have the algorithm to find the points on the locus between 0 and 45 degrees:
//L0 is the point on the line between p0 and p1
//L1 is the...