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/quad.h | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'src/model/quad.h') diff --git a/src/model/quad.h b/src/model/quad.h index 42832d0..2950477 100644 --- a/src/model/quad.h +++ b/src/model/quad.h @@ -19,7 +19,7 @@ class Quad public: /// a new quad with 4 vertices, a normal, color and a detail flag 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); /// delete quad ~Quad(); @@ -29,12 +29,6 @@ public: return quad_normal; } - /// color of the quad - inline math::Color const & color() const - { - return quad_color; - } - /// indidcates if this quad was generated from a detail brush inline bool detail() const { @@ -72,7 +66,6 @@ private: math::Vector3f quad_v3; math::Vector3f quad_normal; - math::Color quad_color; bool quad_detail; }; -- cgit v1.2.3