⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 controlsystemrescuevan.java

📁 利用JAVA编写的群体机器人局部通讯完成一定得队形控制
💻 JAVA
字号:
/* * ControlSystemRescueVan.java */package EDU.gatech.cc.is.abstractrobot;/** * This is the superclass for a CommN150 robot Control System. * When you create a contol system by extending this class, * it can run within JavaBotHard to control a real robot * or JavaBotSim in simulation. * <P> * <A HREF="../COPYRIGHT.html">Copyright</A> * (c)1997, 1998 Tucker Balch * * @see Simple * @author Tucker Balch * @version $Revision: 1.1 $ */public class ControlSystemRescueVan extends ControlSystemS	{	public RescueVan abstract_robot;	/**	 * Initialize the object. Don't override this method,	 * use Configure instead.	 */	public final void init(Simple ar, long s)		{		super.init(ar,s);		abstract_robot = (RescueVan)ar;		}	}

⌨️ 快捷键说明

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