Commit fff0f674b89fc6e52bfd547aea1557f9f8d152d9

henry 2002-01-09T20:34:16

Minor tidy up

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
diff --git a/src/FTExtrdGlyph.cpp b/src/FTExtrdGlyph.cpp
index 42eaadf..e3528db 100644
--- a/src/FTExtrdGlyph.cpp
+++ b/src/FTExtrdGlyph.cpp
@@ -198,10 +198,10 @@ bool FTExtrdGlyph::Winding( int numPoints, FTGL_DOUBLE *points)
 	// Calculate the winding direction. use formula from redbook.
 	FTGL_DOUBLE area = 0;
 	
-	for( int count= 0; count <= numPoints; ++count)
+	for( int count = 0; count <= numPoints; ++count)
 	{
 		int j1 = (count < numPoints) ? count : 0;
-		int j0 = (j1 == 0) ? ( numPoints-1) : ( j1-1);
+		int j0 = (j1 == 0) ? ( numPoints - 1) : ( j1 - 1);
 
 		FTGL_DOUBLE* p0 = points + j0 * 3;
 		FTGL_DOUBLE* p1 = points + j1 * 3;