diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2002-11-01 23:35:07 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2002-11-01 23:35:07 +0000 |
commit | 034e8641bb2e3a8ff9b313719ba3c44282bf07c1 (patch) | |
tree | 95aeb5a5cce64a4cd1f489141657484656a7c22a /src/glu/sgi/libnurbs/internals/patch.cc | |
parent | 026b40f41617d0cda62a253143136bb5657829d6 (diff) |
renamed abs() function glu_abs()
Diffstat (limited to 'src/glu/sgi/libnurbs/internals/patch.cc')
-rw-r--r-- | src/glu/sgi/libnurbs/internals/patch.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/glu/sgi/libnurbs/internals/patch.cc b/src/glu/sgi/libnurbs/internals/patch.cc index b04262b439..dca20a85f2 100644 --- a/src/glu/sgi/libnurbs/internals/patch.cc +++ b/src/glu/sgi/libnurbs/internals/patch.cc @@ -35,8 +35,8 @@ /* * patch.c++ * - * $Date: 2001/08/13 16:52:18 $ $Revision: 1.2 $ - * $Header: /home/krh/git/sync/mesa-cvs-repo/Mesa/src/glu/sgi/libnurbs/internals/patch.cc,v 1.2 2001/08/13 16:52:18 brianp Exp $ + * $Date: 2002/11/01 23:35:07 $ $Revision: 1.3 $ + * $Header: /home/krh/git/sync/mesa-cvs-repo/Mesa/src/glu/sgi/libnurbs/internals/patch.cc,v 1.3 2002/11/01 23:35:07 brianp Exp $ */ #include <stdio.h> @@ -49,7 +49,7 @@ #include "mapdesc.h" #include "quilt.h" #include "nurbsconsts.h" -#include "simplemath.h" //for abs function in ::singleStep(); +#include "simplemath.h" //for glu_abs function in ::singleStep(); /*-------------------------------------------------------------------------- @@ -464,7 +464,7 @@ Patch::getstepsize( void ) void Patchspec::singleStep() { - stepsize = sidestep[0] = sidestep[1] = abs(range[2]); + stepsize = sidestep[0] = sidestep[1] = glu_abs(range[2]); } void |