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

link|improve this question
This question (and answer) might benefit someone else, so you should: (1) create an answer to your question using the answer text area below. Move your edit to the answer; (2) wait the required 48 hours; (3) "accept" your answer. You won't get any points, but at least the question will show up as having been answered in future searches. – Jim Garrison Feb 12 at 1:46
You can delete the question or answer it yourself, citing the article and why it helped. See the faq for more. – trashgod Feb 12 at 1:57
feedback

2 Answers

up vote 0 down vote accepted

Here's a faithful translation of the C code at the link you provided in Java. Please note that it is completely untested. I would recommend some further refactoring to improve class and parameter names.

public class Bezier {

  public static class v {

    public double x;
    public double y;

    public v(double x, double y) {
      this.x = x;
      this.y = y;
    }
  }

  public static double length(v p0, v p1, v p2) {
    v a = new v(p0.x - (2 * p1.x) + p2.x, p0.y - (2 * p1.y) + p2.y);
    v b = new v((2 * p1.x) - (2 * p0.x), (2 * p1.y) - (2 * p0.y));
    double A = 4 * (a.x * a.x + a.y * a.y);
    double B = 4 * (a.x * b.x + a.y * b.y);
    double C = b.x * b.x + b.y * b.y;
    double Sabc = 2 * Math.sqrt(A + B + C);
    double A_2 = Math.sqrt(A);
    double A_32 = 2 * A * A_2;
    double C_2 = 2 * Math.sqrt(C);
    double BA = B / A_2;
    return (A_32 * Sabc + A_2 * B * (Sabc - C_2) + (4 * C * A - B * B) * Math.log((2 * A_2 + BA + Sabc) / (BA + C_2))) / (4 * A_32);
  }
}
link|improve this answer
Thanks for your effort! – user1204548 May 6 at 22:03
feedback

Your use of the word perimeter suggests you are looking for the bounding shape.

The bounding quadrilateral of a cubic Bezier is the quadrilateral defined by is four control points.

The bounding triangle of a quadratic Bezier is the triangle defined by is three control points.

However, the link you posted seems to be discussing the length of a Bézier. If that is truly what you are looking for then I would suggest you post it as an answer and accept it.

Great reference to Bézier curves on Wikipedia.

link|improve this answer
Oh, thank you! I am also kind of newbie in English language, hehe – user1204548 May 6 at 22:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.