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.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/source/blender/makesdna/DNA_modifier_types.h b/source/blender/makesdna/DNA_modifier_types.h
index c4180071352..465dae89ad1 100644
--- a/source/blender/makesdna/DNA_modifier_types.h
+++ b/source/blender/makesdna/DNA_modifier_types.h
@@ -849,17 +849,17 @@ typedef struct CollisionModifierData {
ModifierData modifier;
/** Position at the beginning of the frame. */
- struct MVert *x;
+ float (*x)[3];
/** Position at the end of the frame. */
- struct MVert *xnew;
+ float (*xnew)[3];
/** Unused at the moment, but was discussed during sprint. */
- struct MVert *xold;
+ float (*xold)[3];
/** New position at the actual inter-frame step. */
- struct MVert *current_xnew;
+ float (*current_xnew)[3];
/** Position at the actual inter-frame step. */
- struct MVert *current_x;
+ float (*current_x)[3];
/** (xnew - x) at the actual inter-frame step. */
- struct MVert *current_v;
+ float (*current_v)[3];
struct MVertTri *tri;
@@ -879,9 +879,9 @@ typedef struct SurfaceModifierData {
ModifierData modifier;
/** Old position. */
- struct MVert *x;
+ float (*x)[3];
/** Velocity. */
- struct MVert *v;
+ float (*v)[3];
struct Mesh *mesh;