From 3a0c98960e0f4d86e70bc191e19fff70e67d2a63 Mon Sep 17 00:00:00 2001 From: Orestis Malaspinas <orestis.malaspinas@hesge.ch> Date: Mon, 17 Feb 2020 18:23:33 +0100 Subject: [PATCH] mise a jour --- Makefile | 5 ++++- delaunay.md | 3 ++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index bf98298..233d6a7 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,7 @@ HTMLOPTIONS += -t html5 HTMLOPTIONS += -c css/tufte-css/tufte.css HTMLOPTIONS += --self-contained -all: pointeurs_avances.pdf oral.pdf ligne_commande.pdf strings.pdf tests_assertions.pdf make.pdf base_3.pdf base_2.pdf base_1.pdf intro.pdf index.html +all: delaunay.pdf pointeurs_avances.pdf oral.pdf ligne_commande.pdf strings.pdf tests_assertions.pdf make.pdf base_3.pdf base_2.pdf base_1.pdf intro.pdf index.html intro.pdf: intro.md metadata.yaml pandoc $(PDFOPTIONS) -o $@ $^ @@ -51,6 +51,9 @@ oral.pdf: oral.md metadata.yaml pointeurs_avances.pdf: pointeurs_avances.md metadata.yaml pandoc $(PDFOPTIONS) -o $@ $^ +delaunay.pdf: delaunay.md + pandoc $(PDFOPTIONS) -o $@ $^ + index.html: index.md pandoc -s $(OPTIONS) $(HTMLOPTIONS) -o $@ $< diff --git a/delaunay.md b/delaunay.md index 9143430..b2cf86c 100644 --- a/delaunay.md +++ b/delaunay.md @@ -156,4 +156,5 @@ void bowyer_watson(point *points, int num_p, vec_triangle *t, int *num_t) { $$ \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. \ No newline at end of file +où $|.|$ signifie le calcul du déterminant. +* Vous trouverez la fonction pour ce calcul dans l'énoncé du travail pratique. \ No newline at end of file -- GitLab