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>2013-09-25 15:11:41 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-09-25 15:11:41 +0400
commit3c05662f5e03e1d3d86e4ed081301f83ed72e26b (patch)
tree55469f377c202623d040b05b8a497cd863149e3d /source/blender/blenlib
parent8917e63134a61bcc45e1dec189ee45508bfec09c (diff)
fix error where BKE_mesh_cd_validate layer renaming would use invalid index values. from r60260
also correct some comments.
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/intern/math_geom.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/math_geom.c b/source/blender/blenlib/intern/math_geom.c
index bf20dd48486..65cfac86021 100644
--- a/source/blender/blenlib/intern/math_geom.c
+++ b/source/blender/blenlib/intern/math_geom.c
@@ -1114,7 +1114,7 @@ bool isect_point_planes_v3(float (*planes)[4], int totplane, const float p[3])
}
/**
- * Intersect line/plane, optionally treat line as directional (like a ray) with the no_flip argument.
+ * Intersect line/plane.
*
* \param out The intersection point.
* \param l1 The first point of the line.