当前位置: 代码迷 >> Android >> android的3D荧幕翻转中X axis 的含义?
  详细解决方案

android的3D荧幕翻转中X axis 的含义?

热度:79   发布时间:2016-05-01 10:36:12.0
android的3D屏幕翻转中X axis 的含义??
先给个链接:
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轴数学里学过的才对啊
看立方体一个角顶点连着的三个边就知道了
  相关解决方案