From 1bea8e1eacc68bcedbd3f207395bccf11011dae2 Mon Sep 17 00:00:00 2001 From: Juan Linietsky Date: Fri, 1 May 2020 09:34:23 -0300 Subject: New lightmapper -Added LocalVector (needed it) -Added stb_rect_pack (It's pretty cool, we could probably use it for other stuff too) -Fixes and changes all around the place -Added library for 128 bits fixed point (required for Delaunay3D) --- core/math/delaunay.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'core/math/delaunay.h') diff --git a/core/math/delaunay.h b/core/math/delaunay.h index 29f84210d2..6f19f3e58a 100644 --- a/core/math/delaunay.h +++ b/core/math/delaunay.h @@ -115,8 +115,6 @@ public: triangles.push_back(Triangle(p_points.size() + 0, p_points.size() + 1, p_points.size() + 2)); for (int i = 0; i < p_points.size(); i++) { - //std::cout << "Traitement du point " << *p << std::endl; - //std::cout << "_triangles contains " << _triangles.size() << " elements" << std::endl; Vector polygon; -- cgit v1.2.3