summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Smith <whydoubt@yahoo.com>2008-06-13 09:50:43 -0500
committerBrian Paul <brianp@vmware.com>2010-03-12 08:55:05 -0700
commitc73b73ee3328da74bbe74c7ea65e52b9d4e469a3 (patch)
treec73eb930e7da2580d2b189c506e66fc911577cf1
parent7491e48f060b9d317b8d46ac1ec3668ca2085210 (diff)
downloadglu-c73b73ee3328da74bbe74c7ea65e52b9d4e469a3.tar.gz
Grammar and spelling fixes
Signed-off-by: Jeff Smith <whydoubt@yahoo.com> Signed-off-by: Brian Paul <brianp@vmware.com>
-rw-r--r--src/libnurbs/nurbtess/partitionY.h2
-rw-r--r--src/libtess/normal.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/libnurbs/nurbtess/partitionY.h b/src/libnurbs/nurbtess/partitionY.h
index 8dda409..5570c18 100644
--- a/src/libnurbs/nurbtess/partitionY.h
+++ b/src/libnurbs/nurbtess/partitionY.h
@@ -39,7 +39,7 @@
*or both at or below v. In addition, at least one of the ajacent verteces is
*strictly below or above v.
* A vertex is a relex vertex if the internals angle is strictly greater than
- *180. In other words, if the the signed area is negative:
+ *180. In other words, if the signed area is negative:
*(x1, y1), (x2, y2), (x3, y3) are the three vertices along a polygon, the
*order is such that left hand side is inside the polygon. Then (x2,y2) is
*reflex if:
diff --git a/src/libtess/normal.c b/src/libtess/normal.c
index 0a2494b..7ab8316 100644
--- a/src/libtess/normal.c
+++ b/src/libtess/normal.c
@@ -142,7 +142,7 @@ static void CheckOrientation( GLUtesselator *tess )
GLUhalfEdge *e;
/* When we compute the normal automatically, we choose the orientation
- * so that the the sum of the signed areas of all contours is non-negative.
+ * so that the sum of the signed areas of all contours is non-negative.
*/
area = 0;
for( f = fHead->next; f != fHead; f = f->next ) {