iforce.as

来自「用于flash/flex的 as3的 2D图形图像图表的动态生成」· AS 代码 · 共 15 行

AS
15
字号
package flare.physics
{
	/**
	 * Interface representing a force within a physics simulation.
	 */
	public interface IForce
	{
		/**
		 * Applies this force to a simulation.
		 * @param sim the Simulation to apply the force to
		 */
		function apply(sim:Simulation):void;
		
	} // end of interface IForce
}

⌨️ 快捷键说明

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