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

📄 controlmsg.h

📁 基于vc 的环境下机器人自主避障的算法 图形处理 具有载物功能
💻 H
字号:
//////////////////////////////////////////////////////////////////////
// MuRoS - Multi Robot Simulator
//
// Luiz Chaimowicz
// GRASP Lab. University of Pennsylvania
// VERLab - DCC - UFMG - Brasil
//
// ControlMsg.h: interface for the CControlMsg class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(CONTROLMSG_H)
#define CONTROLMSG_H

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

class CControlMsg : public CObject  
{
public:
	CControlMsg();
	virtual ~CControlMsg();

	double m_tstamp;	// time stamp
	int m_from;			// sender
	int m_to;			// receiver (0 if the message is for all robots)
	int m_code;			// specific control code of the message
	double m_extra;		// field for some extra information

	double m_x;			// position x,y of the robot. Used in some situations
	double m_y;

};

#endif

⌨️ 快捷键说明

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