robotmathmaticalmodel.h

来自「InnovLabSimu在vc++下实现」· C头文件 代码 · 共 27 行

H
27
字号
#pragma once

/********************************************************************
	created:	2008/03/23
	created:	23:3:2008   22:47
	filename: 	c:\RoboCupSimu\DynamicPathPlan\DynamicPathPlan\RobotMathmaticalModel.h
	file path:	c:\RoboCupSimu\DynamicPathPlan\DynamicPathPlan
	file base:	RobotMathmaticalModel
	file ext:	h
	author:		GaoYang
	
	purpose:	描述机器人数学模型类,包含了运动模型等
*********************************************************************/
#include "RobotSafeLimit.h"
class CRobotMathmaticalModel:public CRobotSafeLimit
{
public:
	CRobotMathmaticalModel(void);
public:
	virtual~CRobotMathmaticalModel(void);
	
public:
	// 速度运动模型,用机器人的线速度、角速度计算左右轮速
	bool VelocityMotionModel(float LinearVel, float AngularVel,float RobotWidth);
	double m_dLeftSpeed,m_dRightSpeed;///<机器人左右轮速
};

⌨️ 快捷键说明

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