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>2005-04-04 00:13:10 +0400
committerTon Roosendaal <ton@blender.org>2005-04-04 00:13:10 +0400
commit9ec8778288712d7bb31127bb97a3dfc9daa55862 (patch)
tree22c48c771154638be44f5cbe8f3882816d23e63e /source/blender/src/transform.c
parent8d92e6ced2d3acf7bb77ce8e0af35104a1318e5a (diff)
SoftBody:
- on add new SoftBody, it creates automatically edges in Mesh now, gives too confusing results otherwise - if no edges exist in mesh, it also doesnt add diagonals for faces in softbody Transform; - fixed stupid 'used unitialized' gcc warning (sorry theeth!) - made dualAxisConstraint() accept string too - little cleanup of prints in using Manipulators
Diffstat (limited to 'source/blender/src/transform.c')
-rwxr-xr-xsource/blender/src/transform.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/src/transform.c b/source/blender/src/transform.c
index 879c5eb1e98..1bfacbb2922 100755
--- a/source/blender/src/transform.c
+++ b/source/blender/src/transform.c
@@ -907,9 +907,9 @@ static void createTransEditVerts(void)
TransData *tob = NULL;
EditMesh *em = G.editMesh;
EditVert *eve;
- EditVert **nears;
+ EditVert **nears = NULL;
float mtx[3][3], smtx[3][3];
- float *vectors;
+ float *vectors = NULL;
int count=0, countsel=0;
int propmode = Trans.flag & T_PROP_EDIT;