1
0
Fork 0

Fixed an off by one error in node, normal, and face counters.

This commit is contained in:
curt 1998-05-16 13:11:25 +00:00
parent 9ddf836a79
commit e30c10841c
2 changed files with 10 additions and 7 deletions

View file

@ -347,8 +347,8 @@ INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib
#--------------------------------------------------------------------------- #---------------------------------------------------------------------------
# $Log$ # $Log$
# Revision 1.11 1998/05/13 18:30:20 curt # Revision 1.12 1998/05/16 13:11:25 curt
# Updated ... # Fixed an off by one error in node, normal, and face counters.
# #
# Revision 1.4 1998/04/24 00:44:05 curt # Revision 1.4 1998/04/24 00:44:05 curt
# Added zlib support. # Added zlib support.

View file

@ -202,9 +202,9 @@ void obj_fix(char *infile, char *outfile) {
/* I start counting at one because that is how the triangle /* I start counting at one because that is how the triangle
program refers to nodes and normals */ program refers to nodes and normals */
first = 1; first = 1;
ncount = 1; ncount = 0;
vncount = 1; vncount = 0;
fcount = 1; fcount = 0;
printf("Reading file: %s\n", infile); printf("Reading file: %s\n", infile);
@ -380,9 +380,12 @@ void obj_fix(char *infile, char *outfile) {
/* $Log$ /* $Log$
/* Revision 1.11 1998/04/27 15:59:24 curt /* Revision 1.12 1998/05/16 13:11:26 curt
/* Fixed an off by one error. /* 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 * Revision 1.10 1998/04/27 03:33:11 curt
* Code now calculates a center reference points and outputs everything * Code now calculates a center reference points and outputs everything
* relative to that. This is useful in the rendering engine to keep everything * relative to that. This is useful in the rendering engine to keep everything