remove unused variable bis

This commit is contained in:
Sébastien Loriot 2015-08-06 12:33:25 +02:00
parent b6b78427d0
commit 4cf774bc27
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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];