[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [44393] trunk/blender/source/blender: typo cleanup, no functional changes.

Campbell Barton ideasman42 at gmail.com
Fri Feb 24 07:44:13 CET 2012


Revision: 44393
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=44393
Author:   campbellbarton
Date:     2012-02-24 06:44:04 +0000 (Fri, 24 Feb 2012)
Log Message:
-----------
typo cleanup, no functional changes.

Modified Paths:
--------------
    trunk/blender/source/blender/bmesh/bmesh.h
    trunk/blender/source/blender/bmesh/bmesh_queries.h
    trunk/blender/source/blender/bmesh/intern/bmesh_newcore.c
    trunk/blender/source/blender/bmesh/intern/bmesh_queries.c
    trunk/blender/source/blender/bmesh/intern/bmesh_structure.c
    trunk/blender/source/blender/python/bmesh/bmesh_py_types.c
    trunk/blender/source/blender/python/bmesh/bmesh_py_utils.c
    trunk/blender/source/blender/python/mathutils/mathutils.c
    trunk/blender/source/blender/python/mathutils/mathutils_Matrix.c
    trunk/blender/source/blender/python/mathutils/mathutils_Quaternion.c

Modified: trunk/blender/source/blender/bmesh/bmesh.h
===================================================================
--- trunk/blender/source/blender/bmesh/bmesh.h	2012-02-24 05:56:06 UTC (rev 44392)
+++ trunk/blender/source/blender/bmesh/bmesh.h	2012-02-24 06:44:04 UTC (rev 44393)
@@ -298,7 +298,7 @@
 
 void BM_mesh_select_mode_flush(BMesh *bm);
 
-/* mode independant flushing up/down */
+/* mode independent flushing up/down */
 void BM_mesh_deselect_flush(BMesh *bm);
 void BM_mesh_select_flush(BMesh *bm);
 

Modified: trunk/blender/source/blender/bmesh/bmesh_queries.h
===================================================================
--- trunk/blender/source/blender/bmesh/bmesh_queries.h	2012-02-24 05:56:06 UTC (rev 44392)
+++ trunk/blender/source/blender/bmesh/bmesh_queries.h	2012-02-24 06:44:04 UTC (rev 44393)
@@ -81,7 +81,7 @@
 int BM_edge_is_manifold(struct BMesh *bm, struct BMEdge *e);
 
 /* returns true if e is a boundary edge, e.g. has only 1 face bordering it. */
-int BM_edge_is_boundry(struct BMEdge *e);
+int BM_edge_is_boundary(struct BMEdge *e);
 
 /* returns the face corner angle */
 float BM_loop_face_angle(struct BMesh *bm, struct BMLoop *l);

Modified: trunk/blender/source/blender/bmesh/intern/bmesh_newcore.c
===================================================================
--- trunk/blender/source/blender/bmesh/intern/bmesh_newcore.c	2012-02-24 05:56:06 UTC (rev 44392)
+++ trunk/blender/source/blender/bmesh/intern/bmesh_newcore.c	2012-02-24 06:44:04 UTC (rev 44393)
@@ -172,7 +172,7 @@
 	return l;
 }
 
-static BMLoop *bm_face_boundry_add(BMesh *bm, BMFace *f, BMVert *startv, BMEdge *starte)
+static BMLoop *bm_face_boundary_add(BMesh *bm, BMFace *f, BMVert *startv, BMEdge *starte)
 {
 #ifdef USE_BMESH_HOLES
 	BMLoopList *lst = BLI_mempool_calloc(bm->looplistpool);
@@ -292,7 +292,7 @@
 
 	f->head.htype = BM_FACE;
 
-	startl = lastl = bm_face_boundry_add(bm, (BMFace *)f, verts[0], edges[0]);
+	startl = lastl = bm_face_boundary_add(bm, (BMFace *)f, verts[0], edges[0]);
 	
 	startl->v = (BMVert *)verts[0];
 	startl->e = (BMEdge *)edges[0];

Modified: trunk/blender/source/blender/bmesh/intern/bmesh_queries.c
===================================================================
--- trunk/blender/source/blender/bmesh/intern/bmesh_queries.c	2012-02-24 05:56:06 UTC (rev 44392)
+++ trunk/blender/source/blender/bmesh/intern/bmesh_queries.c	2012-02-24 06:44:04 UTC (rev 44393)
@@ -408,7 +408,7 @@
  *	1 for true, 0 for false.
  */
 
-int BM_edge_is_boundry(BMEdge *e)
+int BM_edge_is_boundary(BMEdge *e)
 {
 	int count = BM_edge_face_count(e);
 	if (count == 1) {

Modified: trunk/blender/source/blender/bmesh/intern/bmesh_structure.c
===================================================================
--- trunk/blender/source/blender/bmesh/intern/bmesh_structure.c	2012-02-24 05:56:06 UTC (rev 44392)
+++ trunk/blender/source/blender/bmesh/intern/bmesh_structure.c	2012-02-24 06:44:04 UTC (rev 44393)
@@ -103,7 +103,7 @@
  *	   some nice utilities for navigating disk cycles in a way that hides this detail from the
  *	   tool writer.
  *
- *		Note that the disk cycle is completley independant from face data. One advantage of this
+ *		Note that the disk cycle is completley independent from face data. One advantage of this
  *		is that wire edges are fully integrated into the topology database. Another is that the
  *	    the disk cycle has no problems dealing with non-manifold conditions involving faces.
  *

Modified: trunk/blender/source/blender/python/bmesh/bmesh_py_types.c
===================================================================
--- trunk/blender/source/blender/python/bmesh/bmesh_py_types.c	2012-02-24 05:56:06 UTC (rev 44392)
+++ trunk/blender/source/blender/python/bmesh/bmesh_py_types.c	2012-02-24 06:44:04 UTC (rev 44393)
@@ -179,13 +179,13 @@
 
 /* doc-strings for all uses of this funcion */
 PyDoc_STRVAR(bpy_bmesh_verts_doc,
-"This meshes vert sequence (readonly).\n\n:type: :class:`BMElemSeq`"
+"This meshes vert sequence (read-only).\n\n:type: :class:`BMElemSeq`"
 );
 PyDoc_STRVAR(bpy_bmesh_edges_doc,
-"This meshes edge sequence (readonly).\n\n:type: :class:`BMElemSeq`"
+"This meshes edge sequence (read-only).\n\n:type: :class:`BMElemSeq`"
 );
 PyDoc_STRVAR(bpy_bmesh_faces_doc,
-"This meshes face sequence (readonly).\n\n:type: :class:`BMElemSeq`"
+"This meshes face sequence (read-only).\n\n:type: :class:`BMElemSeq`"
 );
 
 static PyObject *bpy_bmelemseq_get(BPy_BMesh *self, void *itype)
@@ -196,37 +196,37 @@
 
 /* vert */
 PyDoc_STRVAR(bpy_bmvert_link_edges_doc,
-"Edges connected to this vertex (readonly).\n\n:type: :class:`BMElemSeq` of :class:`BMVert`"
+"Edges connected to this vertex (read-only).\n\n:type: :class:`BMElemSeq` of :class:`BMVert`"
 );
 PyDoc_STRVAR(bpy_bmvert_link_faces_doc,
-"Faces connected to this vertex (readonly).\n\n:type: :class:`BMElemSeq` of :class:`BMFace`"
+"Faces connected to this vertex (read-only).\n\n:type: :class:`BMElemSeq` of :class:`BMFace`"
 );
 PyDoc_STRVAR(bpy_bmvert_link_loops_doc,
-"Loops that use this vertex (readonly).\n\n:type: :class:`BMElemSeq` of :class:`BMLoop`"
+"Loops that use this vertex (read-only).\n\n:type: :class:`BMElemSeq` of :class:`BMLoop`"
 );
 /* edge */
 PyDoc_STRVAR(bpy_bmedge_verts_doc,
-"Verts this edge uses (always 2), (readonly).\n\n:type: :class:`BMElemSeq` of :class:`BMVert`"
+"Verts this edge uses (always 2), (read-only).\n\n:type: :class:`BMElemSeq` of :class:`BMVert`"
 );
 PyDoc_STRVAR(bpy_bmedge_link_faces_doc,
-"Faces connected to this edge, (readonly).\n\n:type: :class:`BMElemSeq` of :class:`BMFace`"
+"Faces connected to this edge, (read-only).\n\n:type: :class:`BMElemSeq` of :class:`BMFace`"
 );
 PyDoc_STRVAR(bpy_bmedge_link_loops_doc,
-"Loops connected to this edge, (readonly).\n\n:type: :class:`BMElemSeq` of :class:`BMLoop`"
+"Loops connected to this edge, (read-only).\n\n:type: :class:`BMElemSeq` of :class:`BMLoop`"
 );
 /* face */
 PyDoc_STRVAR(bpy_bmface_verts_doc,
-"Verts of this face, (readonly).\n\n:type: :class:`BMElemSeq` of :class:`BMVert`"
+"Verts of this face, (read-only).\n\n:type: :class:`BMElemSeq` of :class:`BMVert`"
 );
 PyDoc_STRVAR(bpy_bmface_edges_doc,
-"Edges of this face, (readonly).\n\n:type: :class:`BMElemSeq` of :class:`BMEdge`"
+"Edges of this face, (read-only).\n\n:type: :class:`BMElemSeq` of :class:`BMEdge`"
 );
 PyDoc_STRVAR(bpy_bmface_loops_doc,
-"Loops of this face, (readonly).\n\n:type: :class:`BMElemSeq` of :class:`BMLoop`"
+"Loops of this face, (read-only).\n\n:type: :class:`BMElemSeq` of :class:`BMLoop`"
 );
 /* loop */
 PyDoc_STRVAR(bpy_bmloops_link_loops_doc,
-"Loops connected to this loop, (readonly).\n\n:type: :class:`BMElemSeq` of :class:`BMLoop`"
+"Loops connected to this loop, (read-only).\n\n:type: :class:`BMElemSeq` of :class:`BMLoop`"
 );
 
 static PyObject *bpy_bmelemseq_elem_get(BPy_BMElem *self, void *itype)
@@ -319,7 +319,7 @@
 }
 
 PyDoc_STRVAR(bpy_bmvert_is_manifold_doc,
-"True when this vertex is manifold (readonly).\n\n:type: boolean"
+"True when this vertex is manifold (read-only).\n\n:type: boolean"
 );
 static PyObject *bpy_bmvert_is_manifold_get(BPy_BMVert *self)
 {
@@ -328,7 +328,7 @@
 }
 
 PyDoc_STRVAR(bpy_bmvert_is_wire_doc,
-"True when this vertex is not connected to any faces (readonly).\n\n:type: boolean"
+"True when this vertex is not connected to any faces (read-only).\n\n:type: boolean"
 );
 static PyObject *bpy_bmvert_is_wire_get(BPy_BMVert *self)
 {
@@ -340,7 +340,7 @@
  * ^^^^ */
 
 PyDoc_STRVAR(bpy_bmedge_is_manifold_doc,
-"True when this edge is manifold (readonly).\n\n:type: boolean"
+"True when this edge is manifold (read-only).\n\n:type: boolean"
 );
 static PyObject *bpy_bmedge_is_manifold_get(BPy_BMEdge *self)
 {
@@ -349,7 +349,7 @@
 }
 
 PyDoc_STRVAR(bpy_bmedge_is_wire_doc,
-"True when this edge is not connected to any faces (readonly).\n\n:type: boolean"
+"True when this edge is not connected to any faces (read-only).\n\n:type: boolean"
 );
 static PyObject *bpy_bmedge_is_wire_get(BPy_BMEdge *self)
 {
@@ -357,13 +357,13 @@
 	return PyBool_FromLong(BM_edge_is_wire(self->bm, self->e));
 }
 
-PyDoc_STRVAR(bpy_bmedge_is_boundry_doc,
-"True when this edge is at the boundry of a face (readonly).\n\n:type: boolean"
+PyDoc_STRVAR(bpy_bmedge_is_boundary_doc,
+"True when this edge is at the boundary of a face (read-only).\n\n:type: boolean"
 );
-static PyObject *bpy_bmedge_is_boundry_get(BPy_BMEdge *self)
+static PyObject *bpy_bmedge_is_boundary_get(BPy_BMEdge *self)
 {
 	BPY_BM_CHECK_OBJ(self);
-	return PyBool_FromLong(BM_edge_is_boundry(self->e));
+	return PyBool_FromLong(BM_edge_is_boundary(self->e));
 }
 
 /* Face
@@ -444,7 +444,7 @@
     /* readonly checks */
     {(char *)"is_manifold",  (getter)bpy_bmedge_is_manifold_get,  (setter)NULL, (char *)bpy_bmedge_is_manifold_doc, NULL},
     {(char *)"is_wire",      (getter)bpy_bmedge_is_wire_get,      (setter)NULL, (char *)bpy_bmedge_is_wire_doc, NULL},
-    {(char *)"is_boundry",   (getter)bpy_bmedge_is_boundry_get,   (setter)NULL, (char *)bpy_bmedge_is_boundry_doc, NULL},
+    {(char *)"is_boundary",   (getter)bpy_bmedge_is_boundary_get,   (setter)NULL, (char *)bpy_bmedge_is_boundary_doc, NULL},
     {(char *)"is_valid",     (getter)bpy_bm_is_valid_get,         (setter)NULL, (char *)bpy_bm_is_valid_doc, NULL},
 
     {NULL, NULL, NULL, NULL, NULL} /* Sentinel */
@@ -513,7 +513,7 @@
 PyDoc_STRVAR(bpy_bmesh_select_flush_doc,
 ".. method:: select_flush(select)\n"
 "\n"
-"   Flush selection, independant of the current selection mode.\n"
+"   Flush selection, independent of the current selection mode.\n"
 "\n"
 "   :arg select: flush selection or de-selected elements.\n"
 "   :type select: boolean\n"
@@ -543,7 +543,6 @@
 "\n"
 "   :arg skip_hidden: When True hidden elements are ignored.\n"
 "   :type skip_hidden: boolean\n"
-
 );
 static PyObject *bpy_bmesh_normal_update(BPy_BMElem *self, PyObject *args)
 {
@@ -636,7 +635,7 @@
 ".. method:: select_set(select)\n"
 "\n"
 "   Set the selection.\n"
-"   This is different from the *select* attribute because it updates the selection state of assosiated geometry..\n"
+"   This is different from the *select* attribute because it updates the selection state of assosiated geometry.\n"
 "\n"
 "   :arg select: Select or de-select.\n"
 "   :type select: boolean\n"

Modified: trunk/blender/source/blender/python/bmesh/bmesh_py_utils.c
===================================================================

@@ Diff output truncated at 10240 characters. @@



More information about the Bf-blender-cvs mailing list