diff --git a/src/draw.c b/src/draw.c index 491f09aef908803131e14cd0d26615a555f89898..87e9d79ae88f448b7b217f96bab7de449662c668 100644 --- a/src/draw.c +++ b/src/draw.c @@ -1,3 +1,10 @@ +/** + * @file draw.c + * @author Boris Stefanovic, Joey Martig + * @brief Contient les méthodes d'affichage de lignes et de cercles. + * @date 23.05.2022 + */ + #include <stdbool.h> #include "../utils/gfx/gfx.h" #include "../utils/utils.h" diff --git a/src/draw.h b/src/draw.h index af39d211b52d600537bfc2d65c33c772b4d257c2..27843e4df751a05ef8dc2d188130862578b46338 100644 --- a/src/draw.h +++ b/src/draw.h @@ -1,3 +1,9 @@ +/** + * @file draw.h + * @author Boris Stefanovic, Joey Martig + * @date 23.05.2022 + */ + #ifndef DRAW_H #define DRAW_H diff --git a/src/draw_tests.c b/src/draw_tests.c index 5ca5e33d89f873eb40b6cd42d0a6b56eb97794f7..242bfb1804d819c5612af2e0fe5114147dde62d6 100644 --- a/src/draw_tests.c +++ b/src/draw_tests.c @@ -1,3 +1,10 @@ +/** + * @file draw_tests.c + * @author Boris Stefanovic, Joey Martig + * @brief Test des méthodes d'affichages de lignes et de cercles. + * @date 23.05.2022 + */ + #include <stdlib.h> #include "draw.h" diff --git a/src/field.c b/src/field.c index 688c6b90d084697f5846818c7f583dbad885744e..62155afa7dc26c540d9e2246e6d48ba94805eb49 100644 --- a/src/field.c +++ b/src/field.c @@ -1,3 +1,10 @@ +/** + * @file field.c + * @author Boris Stefanovic, Joey Martig + * @brief Contient les fonctions de claculs physiques et d'affichage des charges et lignes de champ. + * @date 23.05.2022 + */ + #include <stdbool.h> #include "draw.h" #include "field.h" diff --git a/src/field.h b/src/field.h index 31cc3d9a74a3478f668c029e68766284bcaffb2b..223242f49f49ff3974d98fa7793362779bc2e03e 100644 --- a/src/field.h +++ b/src/field.h @@ -1,3 +1,9 @@ +/** + * @file field.h + * @author Boris Stefanovic, Joey Martig + * @date 23.05.2022 + */ + #ifndef _PHYSIQUE_H_ #define _PHYSIQUE_H_ diff --git a/src/field_tests.c b/src/field_tests.c index 2eec4041d7b8c124292bb912e85290354c1da83f..a7b5dae350902313faf40a564f75c2e3862d0391 100644 --- a/src/field_tests.c +++ b/src/field_tests.c @@ -1,3 +1,10 @@ +/** + * @file field_tests.c + * @author Boris Stefanovic, Joey Martig + * @brief Test unitaires des méthodes field.h + * @date 23.05.2022 + */ + #include <stdlib.h> #include <stdio.h> #include <math.h> diff --git a/src/main.c b/src/main.c index 9e31eb96b9449795f41aaf499e23755fc6020992..5d8618329b21d817e4d95afa3db59ae7aa9cc003 100644 --- a/src/main.c +++ b/src/main.c @@ -1,3 +1,10 @@ +/** + * @file main.c + * @author Boris Stefanovic, Joey Martig + * @brief Main du programme de simulation de charges électriques et lignes de champs. + * @date 23.05.2022 + */ + #include <stdlib.h> #include "field.h"