massive cleaning of file section headers
[physics.git] / src / Entities / Polygon.cpp
index dc25174..085c6e2 100644 (file)
@@ -1,24 +1,29 @@
 #include "Polygon.h"
+
 #include "../Vector2.h"
 
-/// ***** Public Class Methods *****
+
+/// ***** Constructors/Destructors *****
+
 Polygon::Polygon(const Vector2& pos, vector<Vector2> points)
     : PhysicsEntity(pos), points(points)
 {
-    CreateBindingBox();
+    createBindingBox();
 }
 Polygon::~Polygon()
 {
 
 }
 
+/// ***** Public Class Methods *****
+
 void Polygon::draw() const
 {
     // TODO
 }
 
 /// ***** Private Class Methods *****
-void Polygon::CreateBindingBox()
+void Polygon::createBindingBox()
 {
     // TODO
 }