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-12-03 02:10:03 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-12-03 02:10:03 +0400
commit93b24b91a99c688e95d460420569010e8b93f4ba (patch)
tree587cfaa350245c931d5b177f04e9c64328dabfc9
parent1782376d9786a7645372f21cc96baff1cea4716e (diff)
Knife Tool: incorrect sized vector args (harmless but misleading)
-rw-r--r--source/blender/editors/mesh/editmesh_knife.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/mesh/editmesh_knife.c b/source/blender/editors/mesh/editmesh_knife.c
index eb8ebefa6c9..102bad26e28 100644
--- a/source/blender/editors/mesh/editmesh_knife.c
+++ b/source/blender/editors/mesh/editmesh_knife.c
@@ -1076,7 +1076,7 @@ static void knifetool_draw(const bContext *C, ARegion *UNUSED(ar), void *arg)
* In such a case we should have gotten hits on edges or verts of the face. */
static bool knife_ray_intersect_face(KnifeTool_OpData *kcd,
const float s[2],
- const float v1[2], const float v2[2],
+ const float v1[3], const float v2[3],
BMFace *f,
const float face_tol,
float intersectp[3])