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-03-09 04:41:09 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-03-09 04:41:09 +0400
commit4f7bdc59d31e94bc97955c1efeef2a8fce0c8ecd (patch)
tree7e0a36829cf52ff260821ce02716727052b95d32 /source/blender/bmesh/intern/bmesh_polygon.c
parent27d43f3fd3a6fbda95cdb87e4672fe34f19c2205 (diff)
style cleanup: spelling.
also remove large, duplicate comments from sunsky.h
Diffstat (limited to 'source/blender/bmesh/intern/bmesh_polygon.c')
-rw-r--r--source/blender/bmesh/intern/bmesh_polygon.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/source/blender/bmesh/intern/bmesh_polygon.c b/source/blender/bmesh/intern/bmesh_polygon.c
index a3c791a6af9..49a4df0fc9c 100644
--- a/source/blender/bmesh/intern/bmesh_polygon.c
+++ b/source/blender/bmesh/intern/bmesh_polygon.c
@@ -28,7 +28,7 @@
* tessellation, etc)
*
* BMESH_TODO:
- * - Add in Tesselator frontend that creates
+ * - Add in Tessellator frontend that creates
* BMTriangles from copied faces
*
* - Add in Function that checks for and flags
@@ -47,7 +47,7 @@
* \brief TEST EDGE SIDE and POINT IN TRIANGLE
*
* Point in triangle tests stolen from scanfill.c.
- * Used for tesselator
+ * Used for tessellator
*/
static short testedgesidef(const float v1[2], const float v2[2], const float v3[2])
@@ -700,12 +700,11 @@ static int goodline(float (*projectverts)[3], BMFace *f, int v1i,
/**
* \brief Find Ear
*
- * Used by tesselator to find
+ * Used by tessellator to find
* the next triangle to 'clip off'
* of a polygon while tessellating.
*
* \param use_beauty Currently only applies to quads, can be extended later on.
- *
*/
static BMLoop *find_ear(BMesh *UNUSED(bm), BMFace *f, float (*verts)[3], const int nvert, const int use_beauty)
{