Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Blackbourn <chrisbblend@gmail.com>2022-08-08 01:15:13 +0300
committerChris Blackbourn <chrisbblend@gmail.com>2022-08-08 01:39:43 +0300
commit64984126a2b688a4bdd64bea4bcac1091756adab (patch)
treedb512bbc8be89eaaa8b65f4814b6b16014cf79d1 /source/blender/blenkernel/BKE_mesh_mapping.h
parent387e7e9e8d0163750e2b4d97369f76c14cc021fd (diff)
Cleanup: refactoring uvislands to prepare for python api
Rename buf -> storage. See also: D15598
Diffstat (limited to 'source/blender/blenkernel/BKE_mesh_mapping.h')
-rw-r--r--source/blender/blenkernel/BKE_mesh_mapping.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/source/blender/blenkernel/BKE_mesh_mapping.h b/source/blender/blenkernel/BKE_mesh_mapping.h
index f9dda7f5737..0c1839f9ac8 100644
--- a/source/blender/blenkernel/BKE_mesh_mapping.h
+++ b/source/blender/blenkernel/BKE_mesh_mapping.h
@@ -17,11 +17,10 @@ struct MLoopUV;
struct MPoly;
struct MVert;
-/* map from uv vertex to face (for select linked, stitch, uv suburf) */
-
/* UvVertMap */
#define STD_UV_CONNECT_LIMIT 0.0001f
+/* Map from uv vertex to face. Used by select linked, uv subsurf and obj exporter. */
typedef struct UvVertMap {
struct UvMapVert **vert;
struct UvMapVert *buf;
@@ -64,8 +63,8 @@ typedef struct UvElement {
typedef struct UvElementMap {
/* address UvElements by their vertex */
struct UvElement **vert;
- /* UvElement Store */
- struct UvElement *buf;
+ /** UvElement Storage. */
+ struct UvElement *storage;
/** Total number of UVs. */
int total_uvs;
/** Total number of unique UVs. */