Bugfix : Fixed some compiler warnings and some C99 and C++11 specific syntax. ( merged from GitHub, thanks to Riku Palomäki ).

git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@1225 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
This commit is contained in:
kimmi
2012-03-20 21:31:56 +00:00
parent 694cf75070
commit 6c1cb4f159
7 changed files with 13 additions and 12 deletions

View File

@@ -554,7 +554,7 @@ IfcMatrix3 DerivePlaneCoordinateSpace(const TempMesh& curmesh) {
// The input polygon is arbitrarily shaped, so we might need some tries
// until we find a suitable normal (and it does not even need to be
// right in all cases, Newell's algorithm would be the correct one ... ).
size_t base = s-curmesh.vertcnt.back(), t = base, i, j;
size_t base = s-curmesh.vertcnt.back(), i, j;
for (i = base; i < s-1; ++i) {
for (j = i+1; j < s; ++j) {
nor = -((out[i]-any_point)^(out[j]-any_point));