3

I am using ARToolKit iOS SDK for rendering 3D model in my augmented reality project. Now through this sdk I have rendered 3D model but I am not able to rotate 360 it by touch so please help me to rotate my model.

Viral Mithani
  • 313
  • 4
  • 17

2 Answers2

1

Please use setLocalPosePositionX method is availble in VEObject class to rotate 3D model in ARToolKit SDK.

Kalpesh Panchasara
  • 1,730
  • 2
  • 15
  • 27
1

You can detect touch in “ARView.m” file so implement touch delegates in that class and get touch coordinates and send to “VEObject.m” class via NSNotification and then call “setLocalPosePositionX” method to rotate the model

varotariya vajsi
  • 3,965
  • 37
  • 39