abstractsmoothshadematerial.as.svn-base
来自「一个2D基于verlet的Flash物理引擎。它用AS3编写而成。Fisix的目」· SVN-BASE 代码 · 共 30 行
SVN-BASE
30 行
package org.papervision3d.core.material{ import flash.geom.Matrix; import org.papervision3d.core.render.draw.ITriangleDrawer; import org.papervision3d.core.render.material.IUpdateBeforeMaterial; /** * @Author Ralph Hauwert */ public class AbstractSmoothShadeMaterial extends AbstractLightShadeMaterial implements ITriangleDrawer, IUpdateBeforeMaterial { protected var transformMatrix:Matrix; protected var triMatrix:Matrix; public function AbstractSmoothShadeMaterial() { super(); } override protected function init():void { super.init(); transformMatrix = new Matrix(); triMatrix = new Matrix(); } }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?