我的问题是关于.In Docs中的rotate
方法,我看到了这些评论:android.graphics.Camera
public void rotateX (float deg) 自:API 级别 1
应用围绕 X 轴的旋转变换。
public void rotate (float x, float y, float z) 自:API 级别 12
围绕所有三个轴应用旋转变换。
我的问题是:使用rotate (float x, float y, float z) 和一系列rotate*方法有什么区别,例如这两个片段 A 和 B 之间的区别:
A)
camera.rotate (x, y, z);
二)
camera.rotateX (x);
camera.rotateY (y);
camera.rotateZ (z);