nodevec2array.java

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

JAVA
35
字号
/* * NodeVec2Array.java */package EDU.gatech.cc.is.clay;import java.lang.*;import EDU.gatech.cc.is.util.Vec2;/** * A Node that returns an array of Vec2 values.  * <P> * For detailed information on how to configure behaviors, see the * <A HREF="../clay/docs/index.html">Clay page</A>. * <P> * <A HREF="../COPYRIGHT.html">Copyright</A> * (c)1997, 1998 Tucker Balch * * @author Tucker Balch * @version $Revision: 1.1 $ */public abstract class NodeVec2Array extends Node	{	/**	 * Get the Vec2 array output.	 * If you implement a NodeVec2Array, you need to define	 * this method.	 *	 * @param timestamp long, the time of the request	 */        public abstract Vec2[] Value(long timestamp);        }

⌨️ 快捷键说明

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