Update of /cvsroot/plib/plib/src/ssg
In directory sc8-pr-cvs1:/tmp/cvs-serv20089
Modified Files:
ssgSaveASC.cxx
Log Message:
Removing a local change and a typo
Index: ssgSaveASC.cxx
===================================================================
RCS file: /cvsroot/plib/plib/src/ssg/ssgSaveASC.cxx,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- ssgSaveASC.cxx 26 Jul 2003 09:49:38 -0000 1.1
+++ ssgSaveASC.cxx 26 Jul 2003 11:58:44 -0000 1.2
@@ -21,7 +21,7 @@
*/
//
-// ASC (ascii files, use for example by 3DS R4 (the DOS version)) export for SSG/PLIB
+// ASC (ascii files, used for example by 3DS R4 (the DOS version)) export for SSG/PLIB
// Written by Wolfram Kuss in Mar-2003
//
@@ -89,7 +89,8 @@
fprintf ( save_fd, "Face list:\n");
for ( j = 0; j < num_face; j++ )
{
- WKSHORT i1,i2,i3;
+ //WKSHORT
+ short i1,i2,i3;
vt -> getTriangle ( j, &i1, &i2, &i3 ) ;
fprintf ( save_fd, "Face %d: A:%d B:%d C:%d AB:1 BC:1 CA:1\n", j, i1, i2, i3 );
|