mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 00:58:05 +02:00
replaced 0 with 0.0 in sin, cos calls
This commit is contained in:
parent
73ee3ef749
commit
6625fc53e0
1 changed files with 6 additions and 3 deletions
|
|
@ -1,4 +1,4 @@
|
|||
/* $Id: quadric.c,v 1.3 1999/11/11 09:55:39 joukj Exp $ */
|
||||
/* $Id: quadric.c,v 1.4 1999/12/15 12:59:52 brianp Exp $ */
|
||||
|
||||
/*
|
||||
* Mesa 3-D graphics library
|
||||
|
|
@ -23,6 +23,9 @@
|
|||
|
||||
/*
|
||||
* $Log: quadric.c,v $
|
||||
* Revision 1.4 1999/12/15 12:59:52 brianp
|
||||
* replaced 0 with 0.0 in sin, cos calls
|
||||
*
|
||||
* Revision 1.3 1999/11/11 09:55:39 joukj
|
||||
*
|
||||
* tess_macro.h included
|
||||
|
|
@ -392,8 +395,8 @@ void GLAPIENTRY gluCylinder( GLUquadricObj *qobj,
|
|||
for (i=0;i<=slices;i++) {
|
||||
GLfloat x, y;
|
||||
if (i == slices) {
|
||||
x = sin(0);
|
||||
y = cos(0);
|
||||
x = sin(0.0);
|
||||
y = cos(0.0);
|
||||
}
|
||||
else {
|
||||
x = sin(i * da);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue