Ho bisogno di calcolare l'angolo tra le linee. Devo calcolare atan. Quindi io sto usando questo codiceaiuto per calcolare correttamente atan2
static inline CGFloat angleBetweenLinesInRadians2(CGPoint line1Start, CGPoint line1End)
{
CGFloat dx = 0, dy = 0;
dx = line1End.x - line1Start.x;
dy = line1End.y - line1Start.y;
NSLog(@"\ndx = %f\ndy = %f", dx, dy);
CGFloat rads = fabs(atan2(dy, dx));
return rads;
}
Ma non riesco a oltre 180 gradi ((Dopo 179 gradi che va 178..160..150 e così via.
ho bisogno di ruotare su 360 ° . Come posso fare che cosa c'è che non va
maby questo aiuta:??
//Tells the receiver when one or more fingers associated with an event move within a view or window.
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{
NSArray *Touches = [touches allObjects];
UITouch *first = [Touches objectAtIndex:0];
CGPoint b = [first previousLocationInView:[self imgView]]; //prewious position
CGPoint c = [first locationInView:[self imgView]]; //current position
CGFloat rad1 = angleBetweenLinesInRadians2(center, b); //first angel
CGFloat rad2 = angleBetweenLinesInRadians2(center, c); //second angel
CGFloat radAngle = fabs(rad2 - rad1); //angel between two lines
if (tempCount <= gradus)
{
[imgView setTransform: CGAffineTransformRotate([imgView transform], radAngle)];
tempCount += radAngle;
}
}
Lo provo. Non funziona – yozhik
@yozhik: Forse dovresti ex chiaro cosa non funziona. Qual è il risultato atteso e cosa stai vedendo? – casablanca
Ho un sistema di coordinate del decartatore. Su cui sto proiettando un'immagine. C'è l'imaging zero. Quando prendo e muovo la mia foto in alto di 180 gradi - tutto allrigth. Quando cerco di spostarmi di 180 gradi, ad esempio 190, mi mostra 170 gradi. Ho bisogno di lì dove 190 gradi. Vedete ... – yozhik