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:
authorCampbell Barton <ideasman42@gmail.com>2007-06-02 06:02:33 +0400
committerCampbell Barton <ideasman42@gmail.com>2007-06-02 06:02:33 +0400
commitf579a66d7b731a61a1e45cb22b21373390b770ec (patch)
tree3aa994a55ca724ff9d61b6bc1590f0b2ea8c3098 /source/blender/python/api2_2x/Mesh.c
parent228e927c0450e2290ab980df2e2ad9303e528c58 (diff)
made change to NMesh decrefing suggested by theeth, and added 2 more missing decrefs in new_NMFace
Diffstat (limited to 'source/blender/python/api2_2x/Mesh.c')
-rw-r--r--source/blender/python/api2_2x/Mesh.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/Mesh.c b/source/blender/python/api2_2x/Mesh.c
index 15175c0beef..bd78900f625 100644
--- a/source/blender/python/api2_2x/Mesh.c
+++ b/source/blender/python/api2_2x/Mesh.c
@@ -6928,7 +6928,6 @@ static short pointInside_internal(float *vec, float *v1, float *v2, float *v3 )
{
float z,w1,w2,w3,wtot;
- /*min,max*/
if (!POINT_IN_TRI(vec, v1,v2,v3))
return 0;