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:
authorTon Roosendaal <ton@blender.org>2009-01-07 19:05:55 +0300
committerTon Roosendaal <ton@blender.org>2009-01-07 19:05:55 +0300
commit637ffd1dfb4e6b3092ce935961cbe490b574af62 (patch)
tree67a321a9552335c8c9015a31622a73171fbe6c9f /source/blender/makesdna/DNA_lattice_types.h
parentfd969911c5b32b46950a8a79ea1d63e6a1bc10fc (diff)
2.5
More globals discovered; lattice deform stored static deform array and a matrix. Tsk!
Diffstat (limited to 'source/blender/makesdna/DNA_lattice_types.h')
-rw-r--r--source/blender/makesdna/DNA_lattice_types.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_lattice_types.h b/source/blender/makesdna/DNA_lattice_types.h
index 3f45a3c1fb0..a2748617f18 100644
--- a/source/blender/makesdna/DNA_lattice_types.h
+++ b/source/blender/makesdna/DNA_lattice_types.h
@@ -53,6 +53,10 @@ typedef struct Lattice {
struct MDeformVert *dvert;
+ /* used while deforming, always free and NULL after use */
+ float *latticedata;
+ float latmat[4][4];
+
struct Lattice *editlatt;
} Lattice;