Hello anusha.r04, See if it helps you
public void updateCamera() {
if (modelViewMatrix != null) {
com.threed.jpct.Matrix m = new com.threed.jpct.Matrix();
m.setDump(modelViewMatrix);
cam.setBack(m);
cam.setOrientation(mCameraDirection, mCameraUp);
cam.setPosition(mCameraPosition);
}
}
in 'renderFrame' is necessary to capture the Vuforia coordinates and turn to jpct, you are already managing to do this?
public void updateCamera() {
if (modelViewMatrix != null) {
com.threed.jpct.Matrix m = new com.threed.jpct.Matrix();
m.setDump(modelViewMatrix);
cam.setBack(m);
cam.setOrientation(mCameraDirection, mCameraUp);
cam.setPosition(mCameraPosition);
}
}
in 'renderFrame' is necessary to capture the Vuforia coordinates and turn to jpct, you are already managing to do this?