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:
authorAndre Susano Pinto <andresusanopinto@gmail.com>2009-08-05 18:40:38 +0400
committerAndre Susano Pinto <andresusanopinto@gmail.com>2009-08-05 18:40:38 +0400
commite4e9b569e1b766dc07ae074439a894be8d7cda49 (patch)
treec8ae6e0f28df05034c80a28076cfd2db020dad0e /source/blender/editors/armature/meshlaplacian.c
parentbbdba89d06496e1e9a2bc63ce0f70aac8b8cc3f3 (diff)
experiences with memory organization (store the vertexs coords on RayFace)
Diffstat (limited to 'source/blender/editors/armature/meshlaplacian.c')
-rw-r--r--source/blender/editors/armature/meshlaplacian.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/armature/meshlaplacian.c b/source/blender/editors/armature/meshlaplacian.c
index 7a0eda16d39..ff3fed6be34 100644
--- a/source/blender/editors/armature/meshlaplacian.c
+++ b/source/blender/editors/armature/meshlaplacian.c
@@ -401,7 +401,8 @@ static void heat_ray_tree_create(LaplacianSystem *sys)
MFace *mface;
int a;
- sys->heat.raytree = RE_rayobject_mesh_create(me, me);
+ assert(0); //TODO
+ //sys->heat.raytree = RE_rayobject_mesh_create(me, me);
sys->heat.vface = MEM_callocN(sizeof(MFace*)*me->totvert, "HeatVFaces");
for(a=0, mface=me->mface; a<me->totface; a++, mface++) {