* 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

@ -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()
{