Cleanup: use lowercase 2d/3d in function names

This commit is contained in:
2018-11-13 14:21:42 +11:00
parent 20d06eb3a8
commit fe566a30f3
13 changed files with 18 additions and 18 deletions

View File

@@ -275,7 +275,7 @@ void BKE_curve_curve_dimension_update(Curve *cu)
else {
for (; nu; nu = nu->next) {
nu->flag |= CU_2D;
BKE_nurb_test2D(nu);
BKE_nurb_test_2d(nu);
/* since the handles are moved they need to be auto-located again */
if (nu->type == CU_BEZIER)
@@ -547,7 +547,7 @@ void BKE_nurbList_duplicate(ListBase *lb1, const ListBase *lb2)
}
}
void BKE_nurb_test2D(Nurb *nu)
void BKE_nurb_test_2d(Nurb *nu)
{
BezTriple *bezt;
BPoint *bp;