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>2019-11-21 15:25:59 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-11-21 15:30:51 +0300
commit2ec9aa3b71f4ebd9676326b690aaf3049849adee (patch)
tree4964840f39114912872bb6a6c5604928bc99db9b /source/blender/editors/mesh/editmesh_knife.c
parentcee94789850e99fc68dd398e7d1abd67f0e2b85d (diff)
Cleanup: spelling
One of the corrections from last cleanup was wrong.
Diffstat (limited to 'source/blender/editors/mesh/editmesh_knife.c')
-rw-r--r--source/blender/editors/mesh/editmesh_knife.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/editors/mesh/editmesh_knife.c b/source/blender/editors/mesh/editmesh_knife.c
index 395c614f328..1adbbe30286 100644
--- a/source/blender/editors/mesh/editmesh_knife.c
+++ b/source/blender/editors/mesh/editmesh_knife.c
@@ -1612,7 +1612,9 @@ static void knife_find_line_hits(KnifeTool_OpData *kcd)
mul_m4_v3(kcd->ob->imat, v3);
mul_m4_v3(kcd->ob->imat, v4);
- /* numeric error, 'v1' -> 'v2', 'v2' -> 'v4' can end up being ~2000 units apart in otho mode
+ /* Numeric error, 'v1' -> 'v2', 'v2' -> 'v4'
+ * can end up being ~2000 units apart with an orthogonal perspective.
+ *
* (from ED_view3d_win_to_segment_clipped() above)
* this gives precision error; rather then solving properly
* (which may involve using doubles everywhere!),