Я провожу некоторые эксперименты с opengl в c для Linux. У меня есть следующая функция, которая будет рисовать круг с учетом этих параметров. Я включил
#include <stdlib.h>
#include <math.h>
#include <GL/gl.h>
#include <GL/glut.h>
Однако, когда я компилирую:
gcc fiver.c -o fiver -lglut
Я получаю:
/usr/bin/ld: /tmp/ccGdx4hW.o: undefined reference to symbol 'sin@@GLIBC_2.2.5'
/usr/bin/ld: note: 'sin@@GLIBC_2.2.5' is defined in DSO /lib64/libm.so.6 so try
adding it to the linker command line
/lib64/libm.so.6: could not read symbols: Invalid operation
collect2: ld returned 1 exit status
Функция следующая:
void drawCircle (int xc, int yc, int rad) {
//
// draw a circle centered at (xc,yc) with radius rad
//
glBegin(GL_LINE_LOOP);
//
int angle;
for(angle = 0; angle < 365; angle = angle+5) {
double angle_radians = angle * (float)3.14159 / (float)180;
float x = xc + rad * (float)cos(angle_radians);
float y = yc + rad * (float)sin(angle_radians);
glVertex3f(x,0,y);
}
glEnd();
}
Кто-нибудь знает, что не так?