changeformation_test.java

来自「利用JAVA编写的群体机器人局部通讯完成一定得队形控制」· Java 代码 · 共 33 行

JAVA
33
字号
package EDU.gatech.cc.is.clay;

import java.lang.*;
import EDU.gatech.cc.is.util.Vec2;
import EDU.gatech.cc.is.util.Units;

public class changeformation_test extends NodeBoolean
	{
	public static final boolean DEBUG = Node.DEBUG;

	public changeformation_test()
		{
	
		}

	public static boolean	last_val = false;
	long	lasttime = 0;
	/**
	Return a boolean indicating if the two embedded schemas
	are close to each other.
	@param timestamp long, only get new information if timestamp > than last call
                or timestamp == -1.
	@return true if non-zero, false if zero.
	*/
	public boolean Value(long timestamp)
		{  
	//	if ("the button is put down")
	//		last_val = true;
	
		return (last_val);
		}
        }

⌨️ 快捷键说明

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