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.
我正在使用 vuforia 库(Sample TargetImage)在 opengl 概念中做 ios 项目。我想在 3d 纹理中做捏合手势和平移手势。任何人都可以帮助我如何做到这一点。
您可以通过 2 种方式进行操作。1) 使用 touchStart/touchMoved/touchEnd 函数获取触摸位置并通过查找触摸之间的距离来管理捏合缩放。
2)在视图上使用 UIPinchGesture 来获取捏值。这将减少计算距离等的痛苦。
使用该距离,您必须将相机距离物体移动或将物体从相机移动。
我得到了另一个 SDK“Metaio”,我的问题得到了解决,在相机视图中,我们可以放置 3D 对象并在其上应用手势。