2023-08-06 02:40:35 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <GL/glew.h>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "glm/glm.hpp"
|
|
|
|
|
2023-10-07 23:53:01 +01:00
|
|
|
typedef std::vector<float> Vector6;
|
|
|
|
|
2023-08-06 02:40:35 +02:00
|
|
|
class Orbit
|
|
|
|
{
|
|
|
|
public:
|
2023-10-07 23:53:01 +01:00
|
|
|
Orbit(Vector6 keplerianElements);
|
2023-08-06 02:40:35 +02:00
|
|
|
void render();
|
2023-08-14 01:46:29 +02:00
|
|
|
|
2023-08-15 00:14:19 +02:00
|
|
|
glm::vec3 getPosition(const float meanAnomaly);
|
2023-10-07 23:53:01 +01:00
|
|
|
glm::vec3 getVelocity(const float meanAnomaly);
|
2023-10-05 23:25:37 +01:00
|
|
|
glm::vec3 getTangent(const float meanAnomaly);
|
2023-08-14 01:46:29 +02:00
|
|
|
|
2023-10-07 23:53:01 +01:00
|
|
|
void setElements(Vector6 keplerianElements);
|
|
|
|
|
2023-08-06 02:40:35 +02:00
|
|
|
~Orbit();
|
|
|
|
private:
|
2023-08-14 01:46:29 +02:00
|
|
|
const float _pi = 3.14159265359;
|
2023-10-07 23:53:01 +01:00
|
|
|
const int _vertexCount = 100;
|
2023-08-14 01:46:29 +02:00
|
|
|
|
2023-08-06 02:40:35 +02:00
|
|
|
GLuint _vbo;
|
|
|
|
GLuint _vao;
|
|
|
|
|
|
|
|
std::vector<float> _vertices;
|
2023-10-07 23:53:01 +01:00
|
|
|
Vector6 _keplerianElements;
|
|
|
|
|
|
|
|
void regenerateVertices();
|
2023-08-06 02:40:35 +02:00
|
|
|
};
|