* sync with sfml - Renamed Shape::GetNbPoints to Shape::GetPointsCount

git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1411 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
trass3r 2010-02-17 19:21:18 +00:00
parent 504804a06e
commit fd10d2abfe
5 changed files with 79 additions and 68 deletions

View file

@ -128,7 +128,7 @@ class DllLoader
}
if (symb is null)
report( "Symbol cannot be found in specified library", m_libPath, symbolName);
debug report( "Symbol cannot be found in specified library", m_libPath, symbolName);
return symb;
}
@ -183,10 +183,10 @@ private:
}
if (m_lib is null)
{
report("Cannot open library", m_libPath, null);
debug report("Cannot open library", m_libPath, null);
version (Windows)
{
report("Windows error message: " ~ sysErrorString(GetLastError()), m_libPath, null);
debug report("Windows error message: " ~ sysErrorString(GetLastError()), m_libPath, null);
}
}
}

View file

@ -37,17 +37,6 @@ struct Vector3(T)
T y;
T z;
static Vector3 opCall(T x, T y, T z)
{
Vector3!(T) ret;
ret.x = x;
ret.y = y;
ret.z = z;
return ret;
}
/// unary (-) overload
Vector3 opNeg()
{