blendweight.as

来自「一个可以解析Collada文件格式的AS3类库」· AS 代码 · 共 31 行

AS
31
字号
/**
* ...
* @author Default
* @version 0.1
*/

package org.papervision3d.animation.core 
{
/**
 * 
 */
public class BlendWeight 
{
	public var v:uint;
	
	public var weight:Number;
	
	/**
	 * 
	 * @param	vertexIndex
	 * @param	weight
	 * @return
	 */
	public function BlendWeight( vertexIndex:uint, weight:Number ):void
	{
		this.v = vertexIndex;
		this.weight = weight;
	}
}
}

⌨️ 快捷键说明

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