Cleanup: update filename references

This commit is contained in:
Campbell Barton 2021-07-07 14:01:58 +10:00
parent 0b1050bf09
commit 89831fae0c
2 changed files with 4 additions and 4 deletions

View File

@ -299,7 +299,7 @@ void BKE_mesh_recalc_looptri_with_normals(const struct MLoop *mloop,
struct MLoopTri *mlooptri,
const float (*poly_normals)[3]);
/* *** mesh_normals.c *** */
/* *** mesh_normals.cc *** */
void BKE_mesh_calc_normals_mapping_simple(struct Mesh *me);
void BKE_mesh_calc_normals_mapping(struct MVert *mverts,
@ -494,7 +494,7 @@ void BKE_mesh_calc_normals_split_ex(struct Mesh *mesh,
void BKE_mesh_set_custom_normals(struct Mesh *mesh, float (*r_custom_loopnors)[3]);
void BKE_mesh_set_custom_normals_from_vertices(struct Mesh *mesh, float (*r_custom_vertnors)[3]);
/* *** mesh_evaluate.c *** */
/* *** mesh_evaluate.cc *** */
void BKE_mesh_calc_poly_normal(const struct MPoly *mpoly,
const struct MLoop *loopstart,

View File

@ -19,7 +19,7 @@
*
* BM mesh normal calculation functions.
*
* \see mesh_normals.c for the equivalent #Mesh functionality.
* \see mesh_normals.cc for the equivalent #Mesh functionality.
*/
#include "MEM_guardedalloc.h"
@ -525,7 +525,7 @@ bool BM_loop_check_cyclic_smooth_fan(BMLoop *l_curr)
}
/**
* BMesh version of BKE_mesh_normals_loop_split() in mesh_evaluate.c
* BMesh version of BKE_mesh_normals_loop_split() in `mesh_evaluate.cc`
* Will use first clnors_data array, and fallback to cd_loop_clnors_offset
* (use NULL and -1 to not use clnors).
*