m2-ar-projet/src/drone.hh

38 lines
578 B
C++
Raw Normal View History

#ifndef DRONE_HH
#define DRONE_HH
#include "opengl_mesh.hh"
#include "waypoint.hh"
#include <QVector>
#include <QVector3D>
#include <QJsonObject>
template <typename T>
static T lerp(T a, T b, double factor) {
return a + (factor * (b - a));
}
class Drone {
static OpenGLMesh *mesh;
static bool mesh_initialized;
QVector<Waypoint> waypoints;
int mesh_id;
QVector3D pos;
int id;
public:
Drone(int id);
Drone(const QJsonObject &json);
const QVector<Waypoint> getWaypoints() const;
void setTo(int frame);
QVector3D getPos() const;
int getId() const;
};
#endif