[Bf-blender-cvs] [2282b7c6d96] refactor-mesh-bevel-weight-generic: Add comments on MVert and MEdge

Hans Goudey noreply at git.blender.org
Tue Aug 2 18:47:22 CEST 2022


Commit: 2282b7c6d96ba5a69738a57e02d5311e55d40be8
Author: Hans Goudey
Date:   Tue Aug 2 11:46:30 2022 -0500
Branches: refactor-mesh-bevel-weight-generic
https://developer.blender.org/rB2282b7c6d96ba5a69738a57e02d5311e55d40be8

Add comments on MVert and MEdge

===================================================================

M	source/blender/makesdna/DNA_meshdata_types.h

===================================================================

diff --git a/source/blender/makesdna/DNA_meshdata_types.h b/source/blender/makesdna/DNA_meshdata_types.h
index e724436c3cf..c8081c49ca4 100644
--- a/source/blender/makesdna/DNA_meshdata_types.h
+++ b/source/blender/makesdna/DNA_meshdata_types.h
@@ -26,6 +26,9 @@ extern "C" {
 typedef struct MVert {
   float co[3];
   char flag;
+  /**
+   * Deprecated bevel weight storage, now located in #CD_BWEIGHT, except for file read and write.
+   */
   char bweight DNA_DEPRECATED;
   char _pad[2];
 } MVert;
@@ -45,6 +48,9 @@ typedef struct MEdge {
   /** Un-ordered vertex indices (cannot match). */
   unsigned int v1, v2;
   char crease;
+  /**
+   * Deprecated bevel weight storage, now located in #CD_BWEIGHT, except for file read and write.
+   */
   char bweight DNA_DEPRECATED;
   short flag;
 } MEdge;



More information about the Bf-blender-cvs mailing list