named members m_* to quite -Wshadow
[physics.git] / src / Entities / Polygon.h
index 5f3781d..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;
@@ -36,12 +38,13 @@ class Polygon: public PhysicsEntity
         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;
 
-        const float* color;
+        const float* m_color;
+        
     private:
         void createBindingBox();
         void centerPosition();