旋转圆的问题
我想沿着手指的路径旋转圆圈。 如果我手指移动得更快,那么圆圈旋转得也更快。 如果我慢慢地移动手指,圆圈一定会变慢。 圆的运动也必须平滑。 我怎样才能实现这个? 请给我任何帮助。
I want to rotate circle follows my finger's path.
If I move my finger more fast, then the circle must rotate fast.
If I move my finger slowly, the circle must slow.
Also circle's movement must smooth.
How can I implement this?
Please give me any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 UIPanGestureRecognizer,您可以获得识别器的 Velocity 属性,之后您可以在旋转代码(glRotate 或其他)中使用它的值来校正角度。
If you use UIPanGestureRecognizer, you can get Velocity property of recognizer and after it you can use its value in your rotation code (glRotate or smth else) to correct angle.