style cleanup, brackets in else/if, some indentation.

This commit is contained in:
2012-03-06 18:40:15 +00:00
parent 7b7214c722
commit 31d2ee9bf7
116 changed files with 599 additions and 982 deletions

View File

@@ -957,8 +957,7 @@ int isect_sweeping_sphere_tri_v3(
return 0;
}
}
else
{
else {
float t0=(-a+radius)/nordotv;
float t1=(-a-radius)/nordotv;
@@ -1279,13 +1278,11 @@ int isect_line_line_strict_v3(const float v1[3], const float v2[3], const float
return 1; /* intersection found */
}
else
{
else {
return 0;
}
}
else
{
else {
return 0;
}
}