From 4cf774bc274c0f437ef0276104d764ada1473ea4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Thu, 6 Aug 2015 12:33:25 +0200 Subject: [PATCH] remove unused variable bis --- Polyhedron/demo/Polyhedron/Scene_polylines_item.cpp | 2 +- Polyhedron/demo/Polyhedron/create_sphere.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Polyhedron/demo/Polyhedron/Scene_polylines_item.cpp b/Polyhedron/demo/Polyhedron/Scene_polylines_item.cpp index 72342372d76..b3f3e92a3fd 100644 --- a/Polyhedron/demo/Polyhedron/Scene_polylines_item.cpp +++ b/Polyhedron/demo/Polyhedron/Scene_polylines_item.cpp @@ -28,7 +28,7 @@ public: void Scene_polylines_item::create_Sphere(double R) { - create_flat_and_wire_sphere(R, positions_spheres, normals_spheres, positions_wire_spheres, true); + create_flat_and_wire_sphere(R, positions_spheres, normals_spheres, positions_wire_spheres); } void diff --git a/Polyhedron/demo/Polyhedron/create_sphere.h b/Polyhedron/demo/Polyhedron/create_sphere.h index 19b06eff180..714ceccb0a2 100644 --- a/Polyhedron/demo/Polyhedron/create_sphere.h +++ b/Polyhedron/demo/Polyhedron/create_sphere.h @@ -189,7 +189,7 @@ void create_flat_and_wire_sphere(double R, const int rings=18; const int sectors=38; - create_flat_sphere(R, positions_spheres, normals_spheres, four_pos); + create_flat_sphere(R, positions_spheres, normals_spheres); float T, P; float x[4],y[4],z[4];