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-10 01:37:11 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-02-10 01:38:19 +0300
commit201865b6f7e5a55fbbdc6d524f2001f1a13bea8b (patch)
treebe8308191a2c5aae698b943a8f974b8bc6d12810 /source/blender/bmesh
parentde0801c3d6e143cfa639e1df4fc852b0493a1308 (diff)
Cleanup: update old comments
Diffstat (limited to 'source/blender/bmesh')
-rw-r--r--source/blender/bmesh/intern/bmesh_interp.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/source/blender/bmesh/intern/bmesh_interp.c b/source/blender/bmesh/intern/bmesh_interp.c
index a15408d43be..6857a1f3929 100644
--- a/source/blender/bmesh/intern/bmesh_interp.c
+++ b/source/blender/bmesh/intern/bmesh_interp.c
@@ -342,8 +342,12 @@ static void mdisp_axis_from_quad(const float v1[3],
normalize_v3(r_axis_y);
}
-/* tl is loop to project onto, l is loop whose internal displacement, co, is being
- * projected. x and y are location in loop's mdisps grid of point co. */
+/**
+ * \param l_src: is loop whose internal displacement.
+ * \param l_dst: is loop to project onto.
+ * \param p: The point being projected.
+ * \param r_axis_x, r_axis_y: The location in loop's #CD_MDISPS grid of point `p`.
+ */
static bool mdisp_in_mdispquad(BMLoop *l_src,
BMLoop *l_dst,
const float l_dst_f_center[3],