Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHoward Trickey <howard.trickey@gmail.com>2020-07-01 16:15:17 +0300
committerHoward Trickey <howard.trickey@gmail.com>2020-07-01 16:15:17 +0300
commit590ce6817d76b01d1eff0a54bf2f5240596ccefa (patch)
tree104aedae2a24822ddf352a7d765b8068eecb7cda /source/blender/blenlib/intern/delaunay_2d.cc
parenta62bca844ce10dec2e4835db804f3c84c3ff5d58 (diff)
Change bmesh_boolean.c into a C++ file and start using PolyMesh interface.
Also, use BLI_math_mpq.hh everywhere instead of gmpxx.h.
Diffstat (limited to 'source/blender/blenlib/intern/delaunay_2d.cc')
-rw-r--r--source/blender/blenlib/intern/delaunay_2d.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/blenlib/intern/delaunay_2d.cc b/source/blender/blenlib/intern/delaunay_2d.cc
index e7691317210..ac3868dc194 100644
--- a/source/blender/blenlib/intern/delaunay_2d.cc
+++ b/source/blender/blenlib/intern/delaunay_2d.cc
@@ -19,11 +19,10 @@
#include <iostream>
#include <sstream>
-#include "gmpxx.h"
-
#include "BLI_array.hh"
#include "BLI_double2.hh"
#include "BLI_linklist.h"
+#include "BLI_math_mpq.hh"
#include "BLI_mpq2.hh"
#include "BLI_vector.hh"