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-05-13 05:56:03 +0400
committerAndre Susano Pinto <andresusanopinto@gmail.com>2009-05-13 05:56:03 +0400
commitda0c45e7eb5a25ee8ed01a3bd38168045fa3dc04 (patch)
treea0ae3db32ff1664522cfcce35f91c4ad90ec81f6 /source/blender/editors/armature/meshlaplacian.c
parentf5566daa89a43a4b248f36b5335772ebd35960b8 (diff)
Renamed exported functions from render to have the RE_ prefix
RayObject_* => RE_rayobject_*
Diffstat (limited to 'source/blender/editors/armature/meshlaplacian.c')
-rw-r--r--source/blender/editors/armature/meshlaplacian.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/armature/meshlaplacian.c b/source/blender/editors/armature/meshlaplacian.c
index c3ab60ffda6..d74c8dbd0e1 100644
--- a/source/blender/editors/armature/meshlaplacian.c
+++ b/source/blender/editors/armature/meshlaplacian.c
@@ -401,7 +401,7 @@ static void heat_ray_tree_create(LaplacianSystem *sys)
MFace *mface;
int a;
- sys->heat.raytree = RayObject_mesh_create(me, me);
+ 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++) {
@@ -445,7 +445,7 @@ static int heat_ray_bone_visible(LaplacianSystem *sys, int vertex, int bone)
VecMulf(dir, 1e-5);
VecAddf(isec.start, isec.start, dir);
#endif
- visible= !RayObject_raycast(sys->heat.raytree, &isec);
+ visible= !RE_rayobject_raycast(sys->heat.raytree, &isec);
return visible;
}
@@ -709,7 +709,7 @@ void heat_bone_weighting(Object *ob, Mesh *me, float (*verts)[3], int numbones,
/* free */
if(vertsflipped) MEM_freeN(vertsflipped);
- RayObject_free(sys->heat.raytree);
+ RE_rayobject_free(sys->heat.raytree);
MEM_freeN(sys->heat.vface);
MEM_freeN(sys->heat.mindist);