Fix many warnings about implicit integer conversions when compiling for 64 bits.

--HG--
branch : minor
This commit is contained in:
Alex Szpakowski
2015-02-20 01:20:08 -04:00
parent 85de3c41fb
commit ebc68023a7
39 changed files with 114 additions and 114 deletions
+1 -1
View File
@@ -174,7 +174,7 @@ Vector BezierCurve::evaluate(double t) const
return points[0];
}
vector<Vector> BezierCurve::render(size_t accuracy) const
vector<Vector> BezierCurve::render(int accuracy) const
{
if (controlPoints.size() < 2)
throw Exception("Invalid Bezier curve: Not enough control points.");