projection.as

来自「著名的flash 3d引擎 away 3d的源代码」· AS 代码 · 共 38 行

AS
38
字号
package away3d.core.render{    import away3d.core.math.*;    /**    * Data object for camera transform, focus and zoom properties.    */    public class Projection    {    	/**    	 * Defines the current view transform matrix that resolves the transformation tree.    	 */        public var view:Matrix3D;                /**        * Defines the focus for the camera object being used by the view.        */        public var focus:Number;                        /**        * Defines the zoom for the camera object being used by the view.        */        public var zoom:Number;                /**        * Defines the unique timestamp for the view render.        */        public var time:int;				/**		 * Creates a new <code>Projection</code> object.		 */        public function Projection()        {        }    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?