aboutsummaryrefslogtreecommitdiff
path: root/problem.hpp
blob: 535affa081c3b8d4418b5a6d9c9910fd5497b499 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#pragma once

#include <vector>

#include "geom.hpp"

struct obstacle {
	circle c;
};

struct hilare_a {	// System A
	// paramètres globaux
	double l;
	double r_c_car, r_c_trolley;

	// position actuelle
	double x, y, theta, phi;

	vec pos_trolley() const {
		//TODO
		return vec(0, 0);
	}
};

struct problem {
	std::vector<obstacle> map;

	hilare_a begin_pos, end_pos;
};

struct solution {
	std::vector<hilare_a> movement;

	// TODO : décrire mieux un mouvement entre deux points (donner
	// le centre de rotation, l'angle, etc.)
};


/* vim: set ts=4 sw=4 tw=0 noet :*/