Cleanup: style/whitespace

Also use 'uint'.
This commit is contained in:
2018-05-30 19:45:03 +02:00
parent 61fc9fcffa
commit 1f693aefca
16 changed files with 250 additions and 203 deletions

View File

@@ -65,7 +65,7 @@ void DRW_debug_polygon_v3(const float (*v)[3], const int vert_len, const float c
BLI_assert(vert_len > 1);
for (int i = 0; i < vert_len; ++i) {
DRW_debug_line_v3v3(v[i], v[(i+1)%vert_len], color);
DRW_debug_line_v3v3(v[i], v[(i + 1) % vert_len], color);
}
}