Skip to content
Snippets Groups Projects
Commit 583c4da7 authored by orestis.malaspin's avatar orestis.malaspin
Browse files

correction typo

parent 31039dda
Branches
No related tags found
No related merge requests found
Pipeline #9114 passed
...@@ -26,27 +26,27 @@ ...@@ -26,27 +26,27 @@
* On retire tous les triangles qui contiennent les points du super-triangle. * On retire tous les triangles qui contiennent les points du super-triangle.
## Exemple d'ajouts (1/6) (voir [wikipedia](https://bit.ly/2vJs5p2)) ## Exemple d'ajouts (1/6) (source [wikipedia](https://bit.ly/2vJs5p2))
![Ajout du premier point dans le super-triangle](figs/Bowyer-Watson_0.png){#fig:tri width=100%} ![Ajout du premier point dans le super-triangle](figs/Bowyer-Watson_0.png){#fig:tri width=100%}
## Exemple d'ajouts (2/6) (voir [wikipedia](https://bit.ly/2vJs5p2)) ## Exemple d'ajouts (2/6) (source [wikipedia](https://bit.ly/2vJs5p2))
![Ajout du premier point dans le super-triangle](figs/Bowyer-Watson_1.png){#fig:tri width=100%} ![Ajout du premier point dans le super-triangle](figs/Bowyer-Watson_1.png){#fig:tri width=100%}
## Exemple d'ajouts (3/6) (voir [wikipedia](https://bit.ly/2vJs5p2)) ## Exemple d'ajouts (3/6) (source [wikipedia](https://bit.ly/2vJs5p2))
![Ajout du premier point dans le super-triangle](figs/Bowyer-Watson_2.png){#fig:tri width=100%} ![Ajout du premier point dans le super-triangle](figs/Bowyer-Watson_2.png){#fig:tri width=100%}
## Exemple d'ajouts (4/6) (voir [wikipedia](https://bit.ly/2vJs5p2)) ## Exemple d'ajouts (4/6) (source [wikipedia](https://bit.ly/2vJs5p2))
![Ajout du premier point dans le super-triangle](figs/Bowyer-Watson_3.png){#fig:tri width=100%} ![Ajout du premier point dans le super-triangle](figs/Bowyer-Watson_3.png){#fig:tri width=100%}
## Exemple d'ajouts (5/6) (voir [wikipedia](https://bit.ly/2vJs5p2)) ## Exemple d'ajouts (5/6) (source [wikipedia](https://bit.ly/2vJs5p2))
![Ajout du premier point dans le super-triangle](figs/Bowyer-Watson_4.png){#fig:tri width=100%} ![Ajout du premier point dans le super-triangle](figs/Bowyer-Watson_4.png){#fig:tri width=100%}
## Exemple d'ajouts (6/6) (voir [wikipedia](https://bit.ly/2vJs5p2)) ## Exemple d'ajouts (6/6) (source [wikipedia](https://bit.ly/2vJs5p2))
![Ajout du premier point dans le super-triangle](figs/Bowyer-Watson_6.png){#fig:tri width=100%} ![Ajout du premier point dans le super-triangle](figs/Bowyer-Watson_6.png){#fig:tri width=100%}
...@@ -122,7 +122,6 @@ void bowyer_watson(point *points, int num_p, vec_triangle *t, int *num_t) { ...@@ -122,7 +122,6 @@ void bowyer_watson(point *points, int num_p, vec_triangle *t, int *num_t) {
pour chaque t dans mauvais_triangles { pour chaque t dans mauvais_triangles {
vec_remove(vec_triangles, t); vec_remove(vec_triangles, t);
} }
}
``` ```
## Pseudo-code de l'algorithme (2/2) ## Pseudo-code de l'algorithme (2/2)
...@@ -155,4 +154,4 @@ $$ ...@@ -155,4 +154,4 @@ $$
\begin{vmatrix}A_{x}-D_{x}&A_{y}-D_{y}&(A_{x}-D_{x})^{2}+(A_{y}-D_{y})^{2}\\B_{x}-D_{x}&B_{y}-D_{y}&(B_{x}-D_{x})^{2}+(B_{y}-D_{y})^{2}\\C_{x}-D_{x}&C_{y}-D_{y}&(C_{x}-D_{x})^{2}+(C_{y}-D_{y})^{2}\end{vmatrix}>0, \begin{vmatrix}A_{x}-D_{x}&A_{y}-D_{y}&(A_{x}-D_{x})^{2}+(A_{y}-D_{y})^{2}\\B_{x}-D_{x}&B_{y}-D_{y}&(B_{x}-D_{x})^{2}+(B_{y}-D_{y})^{2}\\C_{x}-D_{x}&C_{y}-D_{y}&(C_{x}-D_{x})^{2}+(C_{y}-D_{y})^{2}\end{vmatrix}>0,
$$ $$
où $|.|$ signifie le calcul du déterminant. où $|.|$ signifie le calcul du déterminant.
* Vous trouverez la fonction pour ce calcul dans l'énoncé du travail pratique. * Une façon alternative est donnée dans l'énoncé du travail pratique. Choisissez celle que vous préférez.
\ No newline at end of file \ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment