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-03-15 19:47:32 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-03-15 19:47:32 +0400
commit630798ba3c47ee8d1cead13ee0494b9645f139f7 (patch)
tree6821413d55f37a3f94d38b389537773431f58d36 /source/blender/editors/mesh
parentee2b7b2c683ae9164be181193cd7ca9af27ebd0f (diff)
add in ifdef for WITH_LIBMV, correct own error passing float[2] as float[3]
Diffstat (limited to 'source/blender/editors/mesh')
-rw-r--r--source/blender/editors/mesh/editmesh_knife.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/mesh/editmesh_knife.c b/source/blender/editors/mesh/editmesh_knife.c
index ed27016cf67..45deab2d8de 100644
--- a/source/blender/editors/mesh/editmesh_knife.c
+++ b/source/blender/editors/mesh/editmesh_knife.c
@@ -3297,8 +3297,8 @@ static bool edbm_mesh_knife_face_isect(ARegion *ar, LinkNode *polys, BMFace *f,
add_v3_v3v3(co_b, co_a, tangent);
}
- ED_view3d_project_float_v3_m4(ar, co_a, co_ss_a, projmat);
- ED_view3d_project_float_v3_m4(ar, co_b, co_ss_b, projmat);
+ ED_view3d_project_float_v2_m4(ar, co_a, co_ss_a, projmat);
+ ED_view3d_project_float_v2_m4(ar, co_b, co_ss_b, projmat);
interp_v2_v2v2(co_ss, co_ss_a, co_ss_b, 0.005f);
/* check */