It does not seem that there is any method in Java to calculate the perimeter of a quadratic Bezier Curve... or at least I do not recognize it.
I have search in stackoverflow and all I found was methods in other programming languages. I would be very grateful if anyone could help me find any library (or just some mathematical explanation so I could port it to Java) that could solve this problem.
Sorry if it is an obvious question, but I'm just an amateur programmer and I know little of geometry.
And sorry (again) for my crappy English
Thank you for your time! :)
P.D.: Perimeter = new tag? WAT
EDIT: Ooook, Googled better (thanks to stackoverflow's lack of "perimeter" tag... and this... is... ironyyyy) and found this: http://segfaultlabs.com/docs/quadratic-bezier-curve-length
It's a heavy and precise way to calculate the length. The webpage even includes an example of an implementation in C