[cig-commits] commit: spelling change: Verticies ---> Vertices

Mercurial hg at geodynamics.org
Fri Feb 5 13:00:22 PST 2010


changeset:   214:2a10999ac584
branch:      1.4.x
user:        JulianGiordani
date:        Wed Jan 20 12:55:52 2010 +1100
files:       DrawingObjects/src/Isosurface.c
description:
spelling change: Verticies ---> Vertices


diff -r 57c7edb9d9fb -r 2a10999ac584 DrawingObjects/src/Isosurface.c
--- a/DrawingObjects/src/Isosurface.c	Wed Jan 20 12:31:27 2010 +1100
+++ b/DrawingObjects/src/Isosurface.c	Wed Jan 20 12:55:52 2010 +1100
@@ -963,16 +963,16 @@ void lucIsosurface_DrawWalls( lucIsosurf
 	int nz = self->resolution[ K_AXIS ];
 	int i, j, k;
 	Vertex ** points;
-	Vertex * midVerticies;
+	Vertex * midVertices;
 	char order;
 
 	/* Allocate Memory */
 	points = Memory_Alloc_Array( Vertex* , 8, "array for marching squares");
-	midVerticies = Memory_Alloc_Array( Vertex , 4, "array for marching squares");
-	points[LEFT] = &midVerticies[0];
-	points[RIGHT] = &midVerticies[1];
-	points[TOP] = &midVerticies[2];
-	points[BOTTOM] = &midVerticies[3];
+	midVertices = Memory_Alloc_Array( Vertex , 4, "array for marching squares");
+	points[LEFT] = &midVertices[0];
+	points[RIGHT] = &midVertices[1];
+	points[TOP] = &midVertices[2];
+	points[BOTTOM] = &midVertices[3];
 	
 	for ( i = 0 ; i < nx - 1 ; i++ ) {
 		for ( j = 0 ; j < ny - 1 ; j++ ) {
@@ -1015,7 +1015,7 @@ void lucIsosurface_DrawWalls( lucIsosurf
 		}
 	}
 	Memory_Free( points );
-	Memory_Free( midVerticies );
+	Memory_Free( midVertices );
 }
 
 void lucIsosurface_SetupPointsX( Vertex** points, Vertex*** array, Index i, Index j, Index k ){



More information about the CIG-COMMITS mailing list