I created a 4-point bezier curve. I knew the total bezier curve length using this link. And I knew the length from start point.
I want to know how to get a time value from bezier curve and a point. I found a similar question and divided the bezier curve into 1000 pieces; but it isn't a good solution.
How can I get t value?
Note that for a cubic Bezier curve, there is no "one
t
value for each coordinate". Cubic Bezier can self-intersect, so you can find multiplet
values for a single coordinate. There's two ways to do this: approximately or symbolically.If you want an approximate answer (like what you're already doing for the length computation), simply construct a lookup table of coordinates-for-t:
And write an extra function for reverse lookups, or to build the reverse LUTs:
where
a
,b
,c
,d
are your curve's control points. Since this is approximate, you're not looking for "t value for coordinate" but "closest t value to coordinate". It won't be perfect.What WILL be perfect is finding all possible
t
values for the x and y coordinate components, then finding the one or twot
values out of the set of possible six that approach generates that are the same between the x and y solutions. You can do this by using Cardano's approach, which is explain in another stackoverflow question here: Cubic Bezier reverse GetPoint equation: float for Vector <=> Vector for float