先给个链接:
http://www.cnblogs.com/hanyonglu/archive/2012/02/12/2347636.html
/**
* Applies a rotation transform around the X axis.
*
* @param deg The angle of rotation around the X axis, in degrees
*
* @see #rotateY(float)
* @see #rotateZ(float)
* @see #rotate(float, float, float)
*/
public native void rotateX(float deg);
代码是这样,说按照X axis方向移动,那么这个X axis是什么的方向,如何定义的???
------解决方案--------------------
deg 围绕X轴旋转的角度,float类型
三维坐标XYZ轴数学里学过的才对啊
看立方体一个角顶点连着的三个边就知道了