Revision: 51781
          http://brlcad.svn.sourceforge.net/brlcad/?rev=51781&view=rev
Author:   carlmoore
Date:     2012-08-07 16:51:15 +0000 (Tue, 07 Aug 2012)
Log Message:
-----------
fix 'vertices' spelling in comments and in one output string

Modified Paths:
--------------
    brlcad/trunk/src/conv/dxf/bot-bldxf.c

Modified: brlcad/trunk/src/conv/dxf/bot-bldxf.c
===================================================================
--- brlcad/trunk/src/conv/dxf/bot-bldxf.c       2012-08-07 16:12:18 UTC (rev 
51780)
+++ brlcad/trunk/src/conv/dxf/bot-bldxf.c       2012-08-07 16:51:15 UTC (rev 
51781)
@@ -114,7 +114,7 @@
 
 /*
  *     Compare two successive triangles to see if they are coplanar and
- *     share two verticies.
+ *     share two vertices.
  *
  */
 int
@@ -141,7 +141,7 @@
     }
     /* compare the surface normals */
 
-    /* if the first vertex is greater than the number of verticies
+    /* if the first vertex is greater than the number of vertices
      * this is probably a bogus face, and something bad has happened
      */
     if ((size_t)vnum[0] > bot->num_vertices-1) {
@@ -190,7 +190,7 @@
                (long unsigned int)vnum[0], (long unsigned int)vnum[1], (long 
unsigned int)vnum[2], (long unsigned int)vnum[3], (long unsigned int)vnum[4], 
(long unsigned int)vnum[5]);
     }
 
-    /* find adjacent/matching verticies */
+    /* find adjacent/matching vertices */
 
     for (i=0; i < 18; i++) {
        int *t;
@@ -286,7 +286,7 @@
     fprintf(FH, "254\n");
     fprintf(FH, "70\n");
     fprintf(FH, "64\n");
-    fprintf(FH, "71\n"); /* number of verticies */
+    fprintf(FH, "71\n"); /* number of vertices */
 
     fprintf(FH, "%lu\n", (long unsigned int)num_vertices);
 
@@ -298,7 +298,7 @@
 
 
     if (debug&DEBUG_STATS)
-       fprintf(stderr, "writing %lu verticies\n", (long unsigned 
int)num_vertices);
+       fprintf(stderr, "writing %lu vertices\n", (long unsigned 
int)num_vertices);
     for (i=0; i < num_vertices; i++) {
        fprintf(FH, "VERTEX\n");
        fprintf(FH, "8\n");

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to