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>2012-04-21 18:14:58 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-04-21 18:14:58 +0400
commit8765dfccf725770007e3b4e6b24199fe8377df71 (patch)
tree280d5c199e0c037bb9a3f9f193bd70a411a8b8b5 /source/blender/editors/uvedit
parent1c54eaecd89ba30500e7b83adaf1c1a8a85c0b43 (diff)
style cleanup: correct typos
Diffstat (limited to 'source/blender/editors/uvedit')
-rw-r--r--source/blender/editors/uvedit/uvedit_ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/uvedit/uvedit_ops.c b/source/blender/editors/uvedit/uvedit_ops.c
index 969fa684c80..a53a42b616b 100644
--- a/source/blender/editors/uvedit/uvedit_ops.c
+++ b/source/blender/editors/uvedit/uvedit_ops.c
@@ -1510,7 +1510,7 @@ static void weld_align_uv(bContext *C, int tool)
/* Projection of point (x, y) over line (x1, y1, x2, y2) along X axis:
* new_y = (y2 - y1) / (x2 - x1) * (x - x1) + y1
* Maybe this should be a BLI func? Or is it already existing?
- * Could use interp_v2_v2v2, but not sure it’s worth it here...*/
+ * Could use interp_v2_v2v2, but not sure it's worth it here...*/
if (tool == 't')
luv->uv[0] = a * (luv->uv[1] - uv_start[1]) + uv_start[0];
else if (tool == 'u')