33 lines
744 B
C++
33 lines
744 B
C++
#pragma once
|
|
|
|
#include "Thing.h"
|
|
#include "Vector3.h"
|
|
|
|
namespace Passer {
|
|
namespace RoboidControl {
|
|
|
|
class Quadcopter : public Thing {
|
|
public:
|
|
Quadcopter();
|
|
|
|
void LinearMotion(Vector3 velocity,
|
|
float yawSpeed = 0.0F,
|
|
float rollSpeed = 0.0);
|
|
void SetTwistSpeed(float forward, float yaw, float pitch);
|
|
virtual void SetTwistSpeed(Vector3 velocity, float yawSpeed = 0.0F);
|
|
|
|
Vector3 GetTargetVelocity();
|
|
float GetYawSpeed();
|
|
float GetPitchSpeed();
|
|
float GetRollSpeed();
|
|
|
|
protected:
|
|
Vector3 velocity = Vector3::zero;
|
|
float pitchSpeed = 0.0F;
|
|
float yawSpeed = 0.0F;
|
|
float rollSpeed = 0.0F;
|
|
};
|
|
|
|
} // namespace RoboidControl
|
|
} // namespace Passer
|
|
using namespace Passer::RoboidControl; |