Another quadratic Bézier curve, however this time it does not have the animation, it instantly draws it between the points. only works when the points are on the screen, do not drag them off. the higher the resolution the more CPU intensive this is. (it draws the line with resolution parts. how it works (for resolution = 100): calculates the distance between point one and point two = d1 calculates the distance between point two and point three = d2 0% along line d1 = p1 0% along line d2 = p2 calculates the distance between p1 and p2 = d3 0% along line d3 added to list x-2 and y-2 change % by 1 repeat until 100% draw points, go to next point. done!