Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2021-02-04 05:08:00 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-02-04 05:10:29 +0300
commit4895d1f9cec43cd0c24f019c3d6de4cbc39d63af (patch)
treef08a8c22d38d72c77db42f25228d865c2908536c /source/blender/editors/transform/transform_constraints.c
parent54cb9e1d798c873da840d72e18611068f14d57b1 (diff)
Cleanup: replace '_imp' function suffix with '_impl'
Use the more common abbreviation for `implementation`.
Diffstat (limited to 'source/blender/editors/transform/transform_constraints.c')
-rw-r--r--source/blender/editors/transform/transform_constraints.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/editors/transform/transform_constraints.c b/source/blender/editors/transform/transform_constraints.c
index fc8e823f050..cf5d26191c8 100644
--- a/source/blender/editors/transform/transform_constraints.c
+++ b/source/blender/editors/transform/transform_constraints.c
@@ -549,10 +549,10 @@ static void applyObjectConstraintSize(TransInfo *t,
}
}
-static void constraints_rotation_imp(TransInfo *t,
- float axismtx[3][3],
- float r_vec[3],
- float *r_angle)
+static void constraints_rotation_impl(TransInfo *t,
+ float axismtx[3][3],
+ float r_vec[3],
+ float *r_angle)
{
BLI_assert(t->con.mode & CON_APPLY);
int mode = t->con.mode & (CON_AXIS0 | CON_AXIS1 | CON_AXIS2);
@@ -598,7 +598,7 @@ static void applyAxisConstraintRot(
TransInfo *t, TransDataContainer *UNUSED(tc), TransData *td, float vec[3], float *angle)
{
if (!td && t->con.mode & CON_APPLY) {
- constraints_rotation_imp(t, t->spacemtx, vec, angle);
+ constraints_rotation_impl(t, t->spacemtx, vec, angle);
}
}
@@ -637,7 +637,7 @@ static void applyObjectConstraintRot(
axismtx = td->axismtx;
}
- constraints_rotation_imp(t, axismtx, vec, angle);
+ constraints_rotation_impl(t, axismtx, vec, angle);
}
}