hello, whoever can help me with this will know that they are jusus christ reincarnate. So im trying to make an arc/parabola that has 2 intersecting points obviously, and the highest point on this arc will be always always 50 pixes high. Now the first point the parabola crosses will always be the same point, (252,220) the second point its to be where ever i tap the screen. so to wrap things up i need a parabola, one point of intersection is always (252,220) the second is where ever the user taps the screen, with a height of always 50 pixels. thats not even half the problem.
So far, heres my code... not working out too good 
Now once i get that to work right, i also need an image (image.png) to be animated and follow the arc/parabola that is created everytime the user taps. So when the user taps the screen, an arc 50 pixels high appears between where they tapped and (252,220) and then they see an image (image.png) move across the drawn parabola and then dissappear whoever can get this i love you
this is the basic idea of what it should be like:
Code:
- (void)drawRect: (CGRect)rect {
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetLineWidth(context, 5.0);
CGContextSetStrokeColorWithColor(context, currentColor.CGColor);
CGContextSetFillColorWithColor(context, currentColor.CGColor);
switch (shapeType) {
case kParabolaShape:
CGContextMoveToPoint(context, 252, 220);
CGContextAddArcToPoint(context 252, 220, firstTouch.x, firstTouch.y, 50.0);
CGContextStrokePath(context);
break;
}
Now once i get that to work right, i also need an image (image.png) to be animated and follow the arc/parabola that is created everytime the user taps. So when the user taps the screen, an arc 50 pixels high appears between where they tapped and (252,220) and then they see an image (image.png) move across the drawn parabola and then dissappear whoever can get this i love you
this is the basic idea of what it should be like: