[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [53642] trunk/blender/source/blender/ blenlib/intern/math_geom.c: comment fix.

Antony Riakiotakis kalast at gmail.com
Mon Jan 7 22:56:14 CET 2013


Revision: 53642
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=53642
Author:   psy-fi
Date:     2013-01-07 21:56:13 +0000 (Mon, 07 Jan 2013)
Log Message:
-----------
comment fix.

Looks like no scaling is done elsewhere on blender for this code. I hope
this bug is squashed for good.

Modified Paths:
--------------
    trunk/blender/source/blender/blenlib/intern/math_geom.c

Modified: trunk/blender/source/blender/blenlib/intern/math_geom.c
===================================================================
--- trunk/blender/source/blender/blenlib/intern/math_geom.c	2013-01-07 21:42:40 UTC (rev 53641)
+++ trunk/blender/source/blender/blenlib/intern/math_geom.c	2013-01-07 21:56:13 UTC (rev 53642)
@@ -2349,7 +2349,7 @@
 		vnext = v[inext];
 
 		/* Mark Mayer et al algorithm that is used here does not operate well if vertex is close
-		 * to borders of face. In that case, do simple linear interpolation between the two edges */
+		 * to borders of face. In that case, do simple linear interpolation between the two edge vertices */
 		if (dist_to_line_segment_v3(co, vmid, vnext) < 10*FLT_EPSILON) {
 			edge_interp = true;
 			break;
@@ -2401,7 +2401,7 @@
 		vnext = v[inext];
 
 		/* Mark Mayer et al algorithm that is used here does not operate well if vertex is close
-		 * to borders of face. In that case, do simple linear interpolation between the two edges */
+		 * to borders of face. In that case, do simple linear interpolation between the two edge vertices */
 		if (dist_to_line_segment_v2(co, vmid, vnext) < 10*FLT_EPSILON) {
 			edge_interp = true;
 			break;




More information about the Bf-blender-cvs mailing list