From 70b4d79d501be4802a06770f02b8f49e2c14e8a7 Mon Sep 17 00:00:00 2001 From: Stijn Buys Date: Thu, 16 Jul 2009 18:34:54 +0000 Subject: Removes unused collor array support, disable bullet in sys/sys.h --- src/model/primitives.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/model/primitives.cc') diff --git a/src/model/primitives.cc b/src/model/primitives.cc index a53ebcd..5e58b50 100644 --- a/src/model/primitives.cc +++ b/src/model/primitives.cc @@ -28,16 +28,16 @@ Primitives::~Primitives() } void Primitives::add_triangle(math::Vector3f const &v0, math::Vector3f const &v1, math::Vector3f const &v2, - math::Vector3f const &normal, math::Color const &color, bool detail) + math::Vector3f const &normal, bool detail) { - Triangle *triangle = new Triangle(v0, v1, v2, normal, color, detail); + Triangle *triangle = new Triangle(v0, v1, v2, normal, detail); primitives_triangles.push_back(triangle); } void Primitives::add_quad(math::Vector3f const &v0, math::Vector3f const &v1, math::Vector3f const &v2, math::Vector3f const &v3, - math::Vector3f const &normal, math::Color const &color, bool detail) + math::Vector3f const &normal, bool detail) { - Quad *quad = new Quad(v0, v1, v2, v3, normal, color, detail); + Quad *quad = new Quad(v0, v1, v2, v3, normal, detail); primitives_quads.push_back(quad); } -- cgit v1.2.3