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:
Diffstat (limited to 'source/blender/makesdna/DNA_modifier_types.h')
-rw-r--r--source/blender/makesdna/DNA_modifier_types.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/makesdna/DNA_modifier_types.h b/source/blender/makesdna/DNA_modifier_types.h
index a04ad732ee7..e3d02cdc0c8 100644
--- a/source/blender/makesdna/DNA_modifier_types.h
+++ b/source/blender/makesdna/DNA_modifier_types.h
@@ -1640,16 +1640,16 @@ enum {
(MOD_MESHSEQ_READ_VERT | MOD_MESHSEQ_READ_POLY | MOD_MESHSEQ_READ_UV | MOD_MESHSEQ_READ_COLOR)
/* Hair modifier */
-typedef struct HairModifierGuideCurve {
- struct HairModifierGuideCurve *next, *prev;
+typedef struct HairModifierFiberCurve {
+ struct HairModifierFiberCurve *next, *prev;
/* Index for the mesh sample buffer */
int mesh_sample_index;
/* Number of vertices in the curve */
int numverts;
/* Vertex array */
- struct HairGuideVertex *verts;
-} HairModifierGuideCurve;
+ struct HairFiberVertex *verts;
+} HairModifierFiberCurve;
typedef struct HairModifierData {
ModifierData modifier;
@@ -1664,7 +1664,7 @@ typedef struct HairModifierData {
int follicle_seed;
int follicle_count;
- ListBase guide_curves;
+ ListBase fiber_curves;
} HairModifierData;
#endif /* __DNA_MODIFIER_TYPES_H__ */