Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
画面の中央にない位置 (x:138および)の画像ビューがあります。y:107これらの点と水平線の間の角度を計算したくありませんが、これを行う方法がわかりません。
x:138
y:107
誰かこれについてもっと教えてもらえますか?
開始点と終了点が画像の位置である場合、次のようなことができます。
Example: CGPoint endPoint = CGPointMake(50, 100); CGPoint startPoint = CGPointMake(100, 100); float angleVal = (((atan2((endPoint.x - startPoint.x) , (endPoint.y - startPoint.y)))*180)/M_PI);