CRINSA-team2025 V1
Documentation du Club Robot INSA Rennes 2025
Chargement...
Recherche...
Aucune correspondance
Types.h
1//
2// Created by romain on 5/23/25.
3//
4
5#ifndef TYPES_H
6#define TYPES_H
7
8struct Point
9{
10 double x;
11 double y;
12 double z;
13};
14
15struct Color
16{
17 double r;
18 double g;
19 double b;
20};
21
22#endif //TYPES_H
Definition Types.h:16
Definition Types.h:9