Cleanup: Add comment for mesh triangulation faces cache

This commit is contained in:
Hans Goudey
2023-08-11 22:03:25 -07:00
parent cf5666345d
commit efacffebfc

View File

@@ -99,6 +99,7 @@ struct MeshRuntime {
/** Cache for derived triangulation of the mesh, accessed with #Mesh::looptris(). */
SharedCache<Array<MLoopTri>> looptris_cache;
/** Cache for triangle to original face index map, accessed with #Mesh::looptri_faces(). */
SharedCache<Array<int>> looptri_faces_cache;
/** Cache for BVH trees generated for the mesh. Defined in 'BKE_bvhutil.c' */