Cleanup: Fix outdated mesh data comments

This commit is contained in:
Hans Goudey 2022-10-07 22:35:13 -05:00
parent f9ab2214ae
commit 577a79b485
1 changed files with 6 additions and 6 deletions

View File

@ -21,7 +21,7 @@ extern "C" {
/**
* Mesh Vertices.
*
* Typically accessed from #Mesh.mvert
* Typically accessed from #Mesh.verts()
*/
typedef struct MVert {
float co[3];
@ -51,7 +51,7 @@ enum {
/**
* Mesh Edges.
*
* Typically accessed from #Mesh.medge
* Typically accessed with #Mesh.edges()
*/
typedef struct MEdge {
/** Un-ordered vertex indices (cannot match). */
@ -79,10 +79,10 @@ enum {
};
/**
* Mesh Faces
* Mesh Faces.
* This only stores the polygon size & flags, the vertex & edge indices are stored in the #MLoop.
*
* Typically accessed from #Mesh.mpoly.
* Typically accessed with #Mesh.polys().
*/
typedef struct MPoly {
/** Offset into loop array and number of loops in the face. */
@ -109,7 +109,7 @@ enum {
* Mesh Face Corners.
* "Loop" is an internal name for the corner of a polygon (#MPoly).
*
* Typically accessed from #Mesh.mloop.
* Typically accessed with #Mesh.loops().
*/
typedef struct MLoop {
/** Vertex index into an #MVert array. */
@ -376,7 +376,7 @@ typedef struct MDisps {
/**
* Used for hiding parts of a multires mesh.
* Essentially the multires equivalent of the mesh ".hide_vert" boolean layer.
* Essentially the multires equivalent of the mesh ".hide_vert" boolean attribute.
*
* \note This is a bitmap, keep in sync with type used in BLI_bitmap.h
*/