Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This question is very similar to: Quadratic bezier curve: Y coordinate for a given X?. But this one is cubic...

I'm using the getBezier function to calculate the Y coordinates of a bezier curve. The bezier curve starts always at (0,0) and ends always at (1,1).

I know the X value, so I tried to insert it as percent (I'm a moron). But that didn't work, obviously. Could you provide a solution? It's necessary it's an idiot proof function. Like:

function yFromX (c2x,c2y,c3x,c3y) { //c1 = (0,0) and c4 = (1,1), domainc2 and domainc3 = [0,1]
    //your magic
    return y;
}
share|improve this question
1  
You need to understand that the curves are a function from 'percent' to (X, Y). You also might benefit from knowing that there may be two points on a cubic Bezier curve (X, Y1), (X, Y2) with Y1 != Y2. – ellisbben Sep 8 '11 at 15:37
1  
I forgot to tell you the domains of c2x, c2y, c3x and c3y are [0,1]. So this is impossible. – bopjesvla Sep 8 '11 at 16:02
@bpjesvla: As far as the math goes it isn't impossible. – Brian Vandenberg Sep 8 '11 at 16:09
This just screams "do my homework for me, please" – Brian Vandenberg Sep 8 '11 at 16:10
That was @elisbben. And no, this isn't homework, I'm trying to get transitions working in IE in one htc file. This is the only problem I had so far. I'm not a math student... – bopjesvla Sep 8 '11 at 17:19
show 1 more comment

2 Answers

up vote 4 down vote accepted

Since the problem is so limited (function x(t) is monotonic), we can probably get away with using a pretty cheap method of solution-- binary search.

var bezier = function(x0, y0, x1, y1, x2, y2, x3, y3, t) {
    /* whatever you're using to calculate points on the curve */
    return undefined; //I'll assume this returns array [x, y].
};

//we actually need a target x value to go with the middle control
//points, don't we? ;)
var yFromX = function(xTarget, x1, y1, x2, y2) {
  var xTolerance = 0.0001; //adjust as you please
  var myBezier = function(t) {
    return bezier(0, 0, x1, y1, x2, y2, 1, 1, t);
  };

  //we could do something less stupid, but since the x is monotonic
  //increasing given the problem constraints, we'll do a binary search.

  //establish bounds
  var lower = 0;
  var upper = 1;
  var percent = (upper + lower) / 2;

  //get initial x
  var x = myBezier(percent)[0];

  //loop until completion
  while(Math.abs(xTarget - x) > xTolerance) {
    if(xTarget > x) 
      lower = percent;
    else 
      upper = percent;

    percent = (upper + lower) / 2;
    x = myBezier(percent)[0];
  }
  //we're within tolerance of the desired x value.
  //return the y value.
  return myBezier(percent)[1];
};

This should certainly break on some inputs outside of your constraints.

share|improve this answer
Even with my limited knowledge I should have found this... Thanks! – bopjesvla Sep 9 '11 at 14:32
Given your intuition about y(x) being single-valued given the constraints on the middle two control points, your knowledge may be limited but you're pretty quick on your feet. Feel free to upvote or even accept my answer ;) – ellisbben Sep 9 '11 at 16:48
I accidentally pressed the accept button two times. Touch screens... – bopjesvla Sep 10 '11 at 15:00

The original answer already contains everything you need to know

There are numerical issues. The exact solution for cubics suffers from stability problems.

The smooth geometric nature of typical Bezier curves means that spacial search (recursive subdivision) converges nicely, it's usually "fast enough", and it extends easily to N dimensions. There's quite a readable implementation in the Qt source code.

share|improve this answer
Not idiot proof enough for me :) If it isn't too much of a deal, could you write it out? – bopjesvla Sep 8 '11 at 14:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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