named members m_* to quite -Wshadow
[physics.git] / src / Entities / Polygon.h
index 82ff9d7..7941f88 100644 (file)
 #ifndef POLYGON_H
 #define POLYGON_H
 
+#include <bear/Vector2.h>
+using namespace bear;
+
 #include "PhysicsEntity.h"
-#include "Vector2.h"
 
 #include <vector>
 using std::vector;
@@ -30,18 +32,19 @@ using std::vector;
 class Polygon: public PhysicsEntity
 {
     public:
-        Polygon(const vector<Vector2>&);
+        Polygon(const vector<Vector2>&, const float* color);
         virtual ~Polygon();
 
         virtual void draw() const;
 
     //protected:
-        Vector2 maxP; // stores the max bounding box point
-        Vector2 minP; // stores the min bounding box point
+        Vector2 m_maxP; // stores the max bounding box point
+        Vector2 m_minP; // stores the min bounding box point
 
-        vector<Vector2> points;
+        vector<Vector2> m_points;
 
-        // color;
+        const float* m_color;
+        
     private:
         void createBindingBox();
         void centerPosition();