Browse Source

http://stackoverflow.com/questions/8461832/explicit-qualification-in-declaration

Azaezel 9 years ago
parent
commit
f8c4dd9d1d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Engine/source/math/mathUtils.cpp

+ 1 - 1
Engine/source/math/mathUtils.cpp

@@ -1847,7 +1847,7 @@ U32 extrudePolygonEdgesFromPoint( const Point3F* vertices, U32 numVertices, cons
 
 //-----------------------------------------------------------------------------
 
-void MathUtils::mBuildHull2D(const Vector<Point2F> _inPoints, Vector<Point2F> &hullPoints)
+void mBuildHull2D(const Vector<Point2F> _inPoints, Vector<Point2F> &hullPoints)
 {
    /// Andrew's monotone chain convex hull algorithm implementation