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:
authorCampbell Barton <ideasman42@gmail.com>2014-04-04 07:15:57 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-04-04 07:15:57 +0400
commit2bba04f1b0c3fa3ebee7958706147e07fb413f56 (patch)
tree1e45dc9c1aa99a5baadcc88aec18705635445824 /source/blender/blenkernel/BKE_cloth.h
parent602629502ca4d307b4791fd3d29e1f7fd4c55bdb (diff)
Cloth: replace EdgeHash with EdgeSet
Diffstat (limited to 'source/blender/blenkernel/BKE_cloth.h')
-rw-r--r--source/blender/blenkernel/BKE_cloth.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/BKE_cloth.h b/source/blender/blenkernel/BKE_cloth.h
index 1e7ac2815b0..757d63e6ec1 100644
--- a/source/blender/blenkernel/BKE_cloth.h
+++ b/source/blender/blenkernel/BKE_cloth.h
@@ -80,7 +80,7 @@ typedef struct Cloth {
struct MFace *mfaces;
struct Implicit_Data *implicit; /* our implicit solver connects to this pointer */
struct Implicit_Data *implicitEM; /* our implicit solver connects to this pointer */
- struct EdgeHash *edgehash; /* used for selfcollisions (currently used as a 'set', value is ignored) */
+ struct EdgeSet *edgeset; /* used for selfcollisions */
int last_frame, pad4;
} Cloth;