Commit: 46e2d5ee41751542ea54177bb268ac957527867b
Author: Campbell Barton
Date:   Fri Nov 21 14:14:50 2014 +0100
Branches: master
https://developer.blender.org/rB46e2d5ee41751542ea54177bb268ac957527867b

Cleanup: typo

===================================================================

M       source/blender/blenkernel/intern/anim_sys.c
M       source/blender/blenkernel/intern/idprop.c
M       source/blender/blenkernel/intern/mesh_validate.c
M       source/blender/blenkernel/intern/text.c
M       source/blender/blenlib/intern/convexhull2d.c
M       source/blender/blenlib/intern/easing.c
M       source/blender/blenlib/intern/math_geom.c
M       source/blender/bmesh/intern/bmesh_edgeloop.c
M       source/blender/bmesh/intern/bmesh_queries.c
M       source/blender/bmesh/operators/bmo_connect_pair.c
M       source/blender/bmesh/operators/bmo_dupe.c
M       source/blender/bmesh/tools/bmesh_bisect_plane.c
M       source/blender/editors/interface/interface_panel.c
M       source/blender/editors/mesh/editmesh_rip.c
M       source/blender/editors/mesh/editmesh_rip_edge.c
M       source/blender/editors/mesh/editmesh_utils.c
M       source/blender/editors/object/object_vgroup.c
M       source/blender/editors/sculpt_paint/paint_image_proj.c
M       source/blender/editors/space_sequencer/sequencer_draw.c
M       source/blender/editors/space_sequencer/sequencer_edit.c
M       source/blender/editors/space_view3d/view3d_ruler.c
M       source/blender/render/intern/source/rayshade.c
M       source/blender/render/intern/source/render_texture.c
M       source/gameengine/Ketsji/KX_Camera.cpp
M       source/gameengine/Ketsji/KX_GameObject.cpp
M       source/gameengine/Ketsji/KX_MouseFocusSensor.cpp
M       source/gameengine/Physics/Bullet/CcdPhysicsController.cpp

===================================================================

diff --git a/source/blender/blenkernel/intern/anim_sys.c 
b/source/blender/blenkernel/intern/anim_sys.c
index 2fb832d..08b4436 100644
--- a/source/blender/blenkernel/intern/anim_sys.c
+++ b/source/blender/blenkernel/intern/anim_sys.c
@@ -1350,7 +1350,7 @@ static bool animsys_remap_path(AnimMapper *UNUSED(remap), 
char *path, char **dst
 }
 
 
-/* less then 1.0 evaluates to false, use epsilon to avoid float error */
+/* less than 1.0 evaluates to false, use epsilon to avoid float error */
 #define ANIMSYS_FLOAT_AS_BOOL(value) ((value) > ((1.0f - FLT_EPSILON)))
 
 /* Write the given value to a setting using RNA, and return success */
diff --git a/source/blender/blenkernel/intern/idprop.c 
b/source/blender/blenkernel/intern/idprop.c
index a7c76ac..a2f1ba8 100644
--- a/source/blender/blenkernel/intern/idprop.c
+++ b/source/blender/blenkernel/intern/idprop.c
@@ -158,7 +158,7 @@ void IDP_ResizeIDPArray(IDProperty *prop, int newlen)
        BLI_assert(prop->type == IDP_IDPARRAY);
 
        /* first check if the array buffer size has room */
-       /* if newlen is 200 items less then totallen, reallocate anyway */
+       /* if newlen is 200 items less than totallen, reallocate anyway */
        if (newlen <= prop->totallen) {
                if (newlen < prop->len && prop->totallen - newlen < 200) {
                        int i;
@@ -235,7 +235,7 @@ void IDP_ResizeArray(IDProperty *prop, int newlen)
        const bool is_grow = newlen >= prop->len;
 
        /* first check if the array buffer size has room */
-       /* if newlen is 200 chars less then totallen, reallocate anyway */
+       /* if newlen is 200 chars less than totallen, reallocate anyway */
        if (newlen <= prop->totallen && prop->totallen - newlen < 200) {
                idp_resize_group_array(prop, newlen, prop->data.pointer);
                prop->len = newlen;
diff --git a/source/blender/blenkernel/intern/mesh_validate.c 
b/source/blender/blenkernel/intern/mesh_validate.c
index f3a9e89..3a6c949 100644
--- a/source/blender/blenkernel/intern/mesh_validate.c
+++ b/source/blender/blenkernel/intern/mesh_validate.c
@@ -755,7 +755,7 @@ bool BKE_mesh_validate_arrays(Mesh *mesh,
                        MDeformWeight *dw;
 
                        for (j = 0, dw = dv->dw; j < dv->totweight; j++, dw++) {
-                               /* note, greater then max defgroups is 
accounted for in our code, but not < 0 */
+                               /* note, greater than max defgroups is 
accounted for in our code, but not < 0 */
                                if (!finite(dw->weight)) {
                                        PRINT_ERR("\tVertex deform %u, group %d 
has weight: %f\n", i, dw->def_nr, dw->weight);
                                        if (do_fixes) {
diff --git a/source/blender/blenkernel/intern/text.c 
b/source/blender/blenkernel/intern/text.c
index b45d9b4..326f399 100644
--- a/source/blender/blenkernel/intern/text.c
+++ b/source/blender/blenkernel/intern/text.c
@@ -369,8 +369,8 @@ int BKE_text_reload(Text *text)
 
 
        buffer = MEM_mallocN(len, "text_buffer");
-       // under windows fread can return less then len bytes because
-       // of CR stripping
+       /* under windows fread can return less than len bytes because
+        * of CR stripping */
        len = fread(buffer, 1, len, fp);
 
        fclose(fp);
@@ -425,8 +425,8 @@ Text *BKE_text_load_ex(Main *bmain, const char *file, const 
char *relpath, const
        fseek(fp, 0L, SEEK_SET);
        
        buffer = MEM_mallocN(len, "text_buffer");
-       // under windows fread can return less then len bytes because
-       // of CR stripping
+       /* under windows fread can return less than len bytes because
+        * of CR stripping */
        len = fread(buffer, 1, len, fp);
 
        fclose(fp);
diff --git a/source/blender/blenlib/intern/convexhull2d.c 
b/source/blender/blenlib/intern/convexhull2d.c
index 361e4b4..5f64088 100644
--- a/source/blender/blenlib/intern/convexhull2d.c
+++ b/source/blender/blenlib/intern/convexhull2d.c
@@ -187,8 +187,8 @@ static int pointref_cmp_yx(const void *a_, const void *b_)
  * \param  points  An array of 2D points.
  * \param  n  The number of points in points.
  * \param  r_points  An array of the convex hull vertex indices (max is n).
- *         _must_ be allocated as ``n * 2`` because of how its used internally,
- *         even though the final result will be no more then \a n in size.
+ * _must_ be allocated as ``n * 2`` because of how its used internally,
+ * even though the final result will be no more than \a n in size.
  * \returns the number of points in r_points.
  */
 int BLI_convexhull_2d(const float (*points)[2], const int n, int r_points[])
diff --git a/source/blender/blenlib/intern/easing.c 
b/source/blender/blenlib/intern/easing.c
index 80f02d5..90c8528 100644
--- a/source/blender/blenlib/intern/easing.c
+++ b/source/blender/blenlib/intern/easing.c
@@ -139,7 +139,7 @@ float BLI_easing_cubic_ease_in_out(float time, float begin, 
float change, float
 
 #ifdef USE_ELASTIC_BLEND
 /**
- * When the amplitude is less then the change, we need to blend
+ * When the amplitude is less than the change, we need to blend
  * \a f when we're close to the crossing point (int time), else we get an ugly 
sharp falloff.
  */
 static float elastic_blend(float time, float change, float duration, float 
amplitude, float s, float f)
diff --git a/source/blender/blenlib/intern/math_geom.c 
b/source/blender/blenlib/intern/math_geom.c
index 0153134..6037345 100644
--- a/source/blender/blenlib/intern/math_geom.c
+++ b/source/blender/blenlib/intern/math_geom.c
@@ -1840,7 +1840,7 @@ float line_plane_factor_v3(const float plane_co[3], const 
float plane_no[3],
        return (dot != 0.0f) ? -dot_v3v3(plane_no, h) / dot : 0.0f;
 }
 
-/** Ensure the distance between these points is no greater then 'dist'.
+/** Ensure the distance between these points is no greater than 'dist'.
  *  If it is, scale then both into the center.
  */
 void limit_dist_v3(float v1[3], float v2[3], const float dist)
diff --git a/source/blender/bmesh/intern/bmesh_edgeloop.c 
b/source/blender/bmesh/intern/bmesh_edgeloop.c
index e83a1d5..aa1f511 100644
--- a/source/blender/bmesh/intern/bmesh_edgeloop.c
+++ b/source/blender/bmesh/intern/bmesh_edgeloop.c
@@ -662,7 +662,7 @@ void BM_edgeloop_flip(BMesh *UNUSED(bm), BMEdgeLoopStore 
*el_store)
 
 void BM_edgeloop_expand(BMesh *UNUSED(bm), BMEdgeLoopStore *el_store, int 
el_store_len)
 {
-       /* first double until we are more then half as big */
+       /* first double until we are more than half as big */
        while ((el_store->len * 2) < el_store_len) {
                LinkData *node_curr = el_store->verts.first;
                while (node_curr) {
diff --git a/source/blender/bmesh/intern/bmesh_queries.c 
b/source/blender/bmesh/intern/bmesh_queries.c
index 0792e95..d0c876e 100644
--- a/source/blender/bmesh/intern/bmesh_queries.c
+++ b/source/blender/bmesh/intern/bmesh_queries.c
@@ -1797,7 +1797,7 @@ bool BM_face_exists_multi_edge(BMEdge **earr, int len)
  *
  * \note The face may contain other verts \b not in \a varr.
  *
- * \note Its possible there are more then one overlapping faces,
+ * \note Its possible there are more than one overlapping faces,
  * in this case the first one found will be assigned to \a r_f_overlap.
  *
  * \param varr  Array of unordered verts.
diff --git a/source/blender/bmesh/operators/bmo_connect_pair.c 
b/source/blender/bmesh/operators/bmo_connect_pair.c
index 418e75b..b82823e 100644
--- a/source/blender/bmesh/operators/bmo_connect_pair.c
+++ b/source/blender/bmesh/operators/bmo_connect_pair.c
@@ -141,7 +141,7 @@ static void state_calc_co_pair(const PathContext *pc,
 
 /**
  * Ideally we wouldn't need this and for most cases we don't.
- * But when a face has vertices that are on the boundary more then once this 
becomes tricky.
+ * But when a face has vertices that are on the boundary more than once this 
becomes tricky.
  */
 static bool state_link_find(PathLinkState *state, BMElem *ele)
 {
diff --git a/source/blender/bmesh/operators/bmo_dupe.c 
b/source/blender/bmesh/operators/bmo_dupe.c
index cd5592f..a5a6480 100644
--- a/source/blender/bmesh/operators/bmo_dupe.c
+++ b/source/blender/bmesh/operators/bmo_dupe.c
@@ -109,7 +109,7 @@ static BMEdge *bmo_edge_copy(BMOperator *op,
 
        /* add to new/old edge map if necassary */
        if (rlen < 2) {
-               /* not sure what non-manifold cases of greater then three
+               /* not sure what non-manifold cases of greater than three
                 * radial should do. */
                BMO_slot_map_elem_insert(op, slot_boundarymap_out, e_src, 
e_dst);
        }
diff --git a/source/blender/bmesh/tools/bmesh_bisect_plane.c 
b/source/blender/bmesh/tools/bmesh_bisect_plane.c
index 463304f..e6e33c9 100644
--- a/source/blender/bmesh/tools/bmesh_bisect_plane.c
+++ b/source/blender/bmesh/tools/bmesh_bisect_plane.c
@@ -112,7 +112,7 @@ static int bm_vert_sortval_cb(const void *v_a_v, const void 
*v_b_v)
 
 static void bm_face_bisect_verts(BMesh *bm, BMFace *f, const float plane[4], 
const short oflag_center)
 {
-       /* unlikely more then 2 verts are needed */
+       /* unlikely more than 2 verts are needed */
        const unsigned int f_len_orig = (unsigned int)f->len;
        BMVert **vert_split_arr = BLI_array_alloca(vert_split_arr, f_len_orig);
        STACK_DECLARE(vert_split_arr);
diff --git a/source/blender/editors/interface/interface_panel.c 
b/source/blender/editors/interface/interface_panel.c
index fc39b63..5ccfa41 100644
--- a/source/blender/editors/interface/interface_panel.c
+++ b/source/blender/editors/interface/interface_panel.c
@@ -1226,7 +1226,7 @@ static void ui_handle_panel_header(const bContext *C, 
uiBlock *block, int mx, in
 
 bool UI_panel_category_is_visible(ARegion *ar)
 {
-       /* more then one */
+       /* more than one */
        return ar->panels_category.first && ar->panels_category.first != 
ar->panels_category.last;
 }
 
diff --git a/source/blender/editors/mesh/editmesh_rip.c 
b/source/blender/editors/mesh/editmesh_rip.c
index 4f149bf..ead243d 100644
--- a/source/blender/editors/mesh/editmesh_rip.c
+++ b/source/blender/editors/mesh/editmesh_rip.c
@@ -626,7 +626,7 @@ static int edbm_rip_invoke__vert(bContext *C, wmOperator 
*op, const wmEvent *eve
         * split off vertex if...
         * - we cant find an edge - this means we are ripping a faces vert that 
is connected to other
         *   geometry only at the vertex.
-        * - the boundary edge total is greater then 2,
+        * - the boundary edge total is greater than 2,
         *   in this case edge split _can_ work but we get far nicer results if 
we use this special case.
         * - there are only 2 edges but we are a wire vert. */
        if ((is_wire == false && totboundary_edge > 2) ||
diff --git a/sou

@@ Diff output truncated at 10240 characters. @@

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to