Fix typos.

This commit is contained in:
Bastien Montagne 2018-11-27 20:17:27 +01:00
parent 2a578b37b3
commit 1f1ea26d8c
2 changed files with 3 additions and 3 deletions

View File

@ -273,7 +273,7 @@ typedef struct ModifierTypeInfo {
/* True when a deform modifier uses normals, the requiredDataMask
* cant be used here because that refers to a normal layer where as
* cant be used here because that refers to a normal layer whereas
* in this case we need to know if the deform modifier uses normals.
*
* this is needed because applying 2 deform modifiers will give the

View File

@ -529,8 +529,8 @@ static void shrinkwrap_calc_normal_projection_cb_ex(
if (calc->vert) {
/* calc->vert contains verts from evaluated mesh. */
/* this coordinated are deformed by vertexCos only for normal projection (to get correct normals) */
/* for other cases calc->varts contains undeformed coordinates and vertexCos should be used */
/* These coordinates are deformed by vertexCos only for normal projection (to get correct normals) */
/* for other cases calc->verts contains undeformed coordinates and vertexCos should be used */
if (calc->smd->projAxis == MOD_SHRINKWRAP_PROJECT_OVER_NORMAL) {
copy_v3_v3(tmp_co, calc->vert[i].co);
normal_short_to_float_v3(tmp_no, calc->vert[i].no);