I'm trying to build a interface that the user can move his finger around the screen an a list of images moves along a path. The idea is that the images center nevers leaves de path.

Most of the things I found was about how to animate using CGPath and not about actually using the path as the track to a user movement.

== Update. Better description ==

I need to objects to be tracked on the path even if the user isn't moving his fingers over the path.

For example (image bellow), if the object is at the beginning of the path and the user touches anywhere on the screen and moves his fingers from left to right I need that the object moves from left to right but following the path, that is, going up as it goes to the right towards the path's end.

== End update

This is the path I've draw, imagine that I'll have a view (any image) that the user can touch and drag it along the path, there's no need to move the finger exactly over the path. If the user move from left to right the image should move from left to right but going up if need following the path.

The curved path

This is how I'm creating the path:

   CGPoint endPointUp = CGPointMake(315, 124);
    CGPoint endPointDown = CGPointMake(0, 403);
    CGPoint controlPoint1 = CGPointMake(133, 187);
    CGPoint controlPoint2 = CGPointMake(174, 318);

    CGMutablePathRef path = CGPathCreateMutable();
    CGPathMoveToPoint(path, NULL, endPointUp.x, endPointUp.y);
    CGPathAddCurveToPoint(path, NULL, controlPoint1.x, controlPoint1.y, controlPoint2.x, controlPoint2.y, endPointDown.x, endPointDown.y);

Any idead how can I achieve this?

link|improve this question

70% accept rate
better ask on gamedev.stackexchange.com – ArtWorkAD Jun 16 '11 at 20:24
feedback

1 Answer

You can take a mathematical function that draws a graph, and then move along this trajectory
object.

link|improve this answer
Any ideas of which mathematical function? – Felipe Cypriano Jun 21 '11 at 14:26
For example, look at sinusoid equation(graph) or look at quadratic equation(graph). – Invader Jun 22 '11 at 8:40
Thanks, I'll search for this equations. But if you have any algorithms that does anything similar I'd really appreciate it. – Felipe Cypriano Jun 22 '11 at 18:29
I have algorithm only for parabola – Invader Jun 23 '11 at 9:09
I just did a algorithm for Cubic Bezier curve and it worked. :) – Felipe Cypriano Jun 23 '11 at 16:15
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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