rename api functions...

- minf, maxf, mini, maxi --> min_ff, max_ff, min_ii, max_ii
This commit is contained in:
2012-10-23 13:28:22 +00:00
parent 9599c2a02b
commit f70d2c65d8
94 changed files with 283 additions and 280 deletions

View File

@@ -1386,8 +1386,8 @@ static void do_makeDispListCurveTypes(Scene *scene, Object *ob, ListBase *dispba
ListBase top_capbase = {NULL, NULL};
for (dlb = dlbev.first; dlb; dlb = dlb->next) {
const float bevfac1 = minf(cu->bevfac1, cu->bevfac2);
const float bevfac2 = maxf(cu->bevfac1, cu->bevfac2);
const float bevfac1 = min_ff(cu->bevfac1, cu->bevfac2);
const float bevfac2 = max_ff(cu->bevfac1, cu->bevfac2);
float firstblend = 0.0f, lastblend = 0.0f;
int i, start, steps;