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-02-24 10:44:04 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-24 10:44:04 +0400
commit1fbd91b8a1277f5616245ef8357f930681764adf (patch)
tree92af8a790e0b60c3860fb4cb7e470916eb498ce3 /source/blender/bmesh
parent6b85b96952becb00c6ad1ec185a9ac229a3ea344 (diff)
typo cleanup, no functional changes.
Diffstat (limited to 'source/blender/bmesh')
-rw-r--r--source/blender/bmesh/bmesh.h2
-rw-r--r--source/blender/bmesh/bmesh_queries.h2
-rw-r--r--source/blender/bmesh/intern/bmesh_newcore.c4
-rw-r--r--source/blender/bmesh/intern/bmesh_queries.c2
-rw-r--r--source/blender/bmesh/intern/bmesh_structure.c2
5 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/bmesh/bmesh.h b/source/blender/bmesh/bmesh.h
index dab70ac35bf..6190e3215c6 100644
--- a/source/blender/bmesh/bmesh.h
+++ b/source/blender/bmesh/bmesh.h
@@ -298,7 +298,7 @@ void BM_face_center_mean_calc(BMesh *bm, BMFace *f, float center[3]);
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);
diff --git a/source/blender/bmesh/bmesh_queries.h b/source/blender/bmesh/bmesh_queries.h
index 39e1d9eaa7a..e1eeaf8ee17 100644
--- a/source/blender/bmesh/bmesh_queries.h
+++ b/source/blender/bmesh/bmesh_queries.h
@@ -81,7 +81,7 @@ int BM_vert_is_manifold(struct BMesh *bm, struct BMVert *v);
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);
diff --git a/source/blender/bmesh/intern/bmesh_newcore.c b/source/blender/bmesh/intern/bmesh_newcore.c
index 0546dbf0512..2bace65056d 100644
--- a/source/blender/bmesh/intern/bmesh_newcore.c
+++ b/source/blender/bmesh/intern/bmesh_newcore.c
@@ -172,7 +172,7 @@ static BMLoop *bmesh_create_loop(BMesh *bm, BMVert *v, BMEdge *e, BMFace *f, con
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 @@ BMFace *BM_face_create(BMesh *bm, BMVert **verts, BMEdge **edges, const int len,
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];
diff --git a/source/blender/bmesh/intern/bmesh_queries.c b/source/blender/bmesh/intern/bmesh_queries.c
index 0fb5d87c85a..06f90d04bd3 100644
--- a/source/blender/bmesh/intern/bmesh_queries.c
+++ b/source/blender/bmesh/intern/bmesh_queries.c
@@ -408,7 +408,7 @@ int BM_edge_is_manifold(BMesh *UNUSED(bm), BMEdge *e)
* 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) {
diff --git a/source/blender/bmesh/intern/bmesh_structure.c b/source/blender/bmesh/intern/bmesh_structure.c
index 94f57bc3a58..dcb7ce6c06a 100644
--- a/source/blender/bmesh/intern/bmesh_structure.c
+++ b/source/blender/bmesh/intern/bmesh_structure.c
@@ -103,7 +103,7 @@ int bmesh_edge_swapverts(BMEdge *e, BMVert *orig, BMVert *newv)
* 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.
*