.
[physics.git] / src / graphics / graphics.cpp
index 1130efb..d9e1dcc 100644 (file)
@@ -47,11 +47,11 @@ void graphics::clean()
 
 /// ***** Public Methods *****
 
-void graphics::drawCircle(float radius, const Vector2& vec, const float* color)
+void graphics::drawCircle(float radius, const Vector2& pos, const float* color)
 {
     glMatrixMode(GL_MODELVIEW);
     glLoadIdentity();
-    glTranslatef(vec.x, vec.y, -1);
+    glTranslatef(pos.x, pos.y, -1);
     glScalef(radius, radius, radius);
 
     if(color != NULL)