fork download
  1. //main.h
  2. #include <iostream>
  3. #include <math.h>
  4. #include <GL/glut.h>
  5.  
  6. const int WINDOW_WIDTH = 512;
  7. const int WINDOW_HEIGHT = 512;
  8.  
  9. //球の速度
  10. float vx[ 8 ];
  11. float vy[ 8 ];
  12.  
  13. //球の中心の座標
  14. float px[ 8 ];
  15. float py[ 8 ];
  16.  
  17. //
  18. const float dt = 0.01f;
  19.  
  20. int numSpheres = 2;
  21.  
  22. void setCamera( void );
  23.  
  24. void display( void );
  25.  
  26. void displayAxis( float length );
  27.  
  28. void displaySphere( float radius, float dr, float dg, float db, float sr, float sg, float sb, float shininess );
  29.  
  30. void keyboardFunction( unsigned char key, int x, int y );
  31.  
  32. void update( void );
  33.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp:4:21: fatal error: GL/glut.h: No such file or directory
 #include <GL/glut.h>
                     ^
compilation terminated.
stdout
Standard output is empty