diff --git a/bachelorproject.pdf b/bachelorproject.pdf index 61c20ef..aaacf2e 100644 Binary files a/bachelorproject.pdf and b/bachelorproject.pdf differ diff --git a/logo-info.pdf b/figures/logo-info.pdf similarity index 100% rename from logo-info.pdf rename to figures/logo-info.pdf diff --git a/questions.md b/questions.md deleted file mode 100644 index 41538e7..0000000 --- a/questions.md +++ /dev/null @@ -1,22 +0,0 @@ -# Bachelor Project Questions - - -## Code -### Question - -In `main.cc:7`, there is the line -```c -#include -``` - -But I have the compiler error that the `gdk/gdkkeysyms.h` file is not found. - -How do you install the `gdk`? Which version of `gtk` are you using? - -### Answer (provisional) -I ran the command -```bash -bear -- make -``` -It produced a `compile_commands.json` that the LSP uses to know which -directories to include. diff --git a/report.md b/report.md deleted file mode 100644 index 7c2b668..0000000 --- a/report.md +++ /dev/null @@ -1,30 +0,0 @@ -# Bachelor Project Report - -## Week 1 - -- Forked and cloned the repo -- Got accustomed to the code - - Look up cairo tutorials to understand wtf is going on - -## Week 2 -- Started coding - - `polygons.h` and `polygons.cc` - - `polygons_generator.h` and `polygons_generator.cc` - - `matrix.h` - -### Polygons properties -- points (`std::vector`): the points that form the polygon, **in local - coordinates**; -- center (`vec2d`): where the origin of the local coordinates lies in global - coordinates; -- angle (`double`): how the points are rotate around the origin (to keep always - the same points but rotating them when making computations are drawing) - **interesting question for later: does computing the points rotated at each - iteration less computationally efficient than just storing them each time - the angle changes?**. - -### Polygon Generator -To make life easier for testing different cases, I made a generator of polygons -that for now is able to generate any triangle and any rectangle. Simple shapes -but that are simple enough to understand what happens when they get hit. We'll -then see if the calculation for the forces transpose to any arbitrary polygon. diff --git a/report.pdf b/report.pdf deleted file mode 100644 index 5431b85..0000000 Binary files a/report.pdf and /dev/null differ