#---------------------------------------------------------------------------
# $Log$
-# Revision 1.11 1998/05/13 18:30:20 curt
-# Updated ...
+# Revision 1.12 1998/05/16 13:11:25 curt
+# Fixed an off by one error in node, normal, and face counters.
#
# Revision 1.4 1998/04/24 00:44:05 curt
# Added zlib support.
/* I start counting at one because that is how the triangle
program refers to nodes and normals */
first = 1;
- ncount = 1;
- vncount = 1;
- fcount = 1;
+ ncount = 0;
+ vncount = 0;
+ fcount = 0;
printf("Reading file: %s\n", infile);
/* $Log$
-/* Revision 1.11 1998/04/27 15:59:24 curt
-/* Fixed an off by one error.
+/* Revision 1.12 1998/05/16 13:11:26 curt
+/* Fixed an off by one error in node, normal, and face counters.
/*
+ * Revision 1.11 1998/04/27 15:59:24 curt
+ * Fixed an off by one error.
+ *
* Revision 1.10 1998/04/27 03:33:11 curt
* Code now calculates a center reference points and outputs everything
* relative to that. This is useful in the rendering engine to keep everything