Cleanup: pass arrays const where possible

This commit is contained in:
2020-08-07 22:56:13 +10:00
parent b134434224
commit 48e089375e
54 changed files with 149 additions and 88 deletions

View File

@@ -1716,7 +1716,10 @@ static bool isNurbselV(Nurb *nu, int *u, int flag)
return 1;
}
static void rotateflagNurb(ListBase *editnurb, short flag, const float cent[3], float rotmat[3][3])
static void rotateflagNurb(ListBase *editnurb,
short flag,
const float cent[3],
const float rotmat[3][3])
{
/* all verts with (flag & 'flag') rotate */
Nurb *nu;