⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 animationkeyframe3d.as.svn-base

📁 ActionScript写的3D图片展示功能
💻 SVN-BASE
字号:
package org.papervision3d.core.animation{	/**	 * @author Tim Knip	 */ 	public class AnimationKeyFrame3D	{		public static const INTERPOLATION_LINEAR:String = "LINEAR";		public static const INTERPOLATION_BEZIER:String = "BEZIER";				/** */		public var name:String;				/** */		public var time:Number;				/** */		public var output:Array;				/** */		public var interpolation:String;				/** */		public var inTangent:Array;				/** */		public var outTangent:Array;				/**		 * Constructor.		 * 		 * @param 	name		 * @param	time		 * @param	output		 * @param	interpolation		 * @param	inTangent		 * @param	outTangent		 */ 		public function AnimationKeyFrame3D(name:String, time:Number, output:Array = null, interpolation:String = null, inTangent:Array = null, outTangent:Array = null)		{			this.name = name;			this.time = time;			this.output = output || new Array();			this.interpolation = interpolation || INTERPOLATION_LINEAR;			this.inTangent = inTangent || new Array();			this.outTangent = outTangent || new Array();		}	}}

⌨️ 快捷键说明

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