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

📄 realrobotcontrol.java

📁 一个由c转成java的3D robot 仿真平台
💻 JAVA
字号:
/**************************************************************************//* In this package the real robot is controlled and the C-file which does *//* this is integrated.							  *//**************************************************************************/package RealRobot;final class RealRobotControl {	private static SerialOut s = new SerialOut();	public static void move(int arm, int pos)	{	  s.moverobo(arm, pos, 1);// 1 means 'execute a movement'	}		public static void openFile()	{	  s.moverobo(66, 66, 0);// 0 means 'open file', 66 is a dummy	}	public static void closeFile()	{	   s.moverobo(66, 66, 2);// 2 means 'close file', 66 is a dummy	} }

⌨️ 快捷键说明

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