Skip to content
Snippets Groups Projects
Select Git revision
  • ab37a9ce325016f3de024327371c0ccaa228b285
  • main default protected
2 results

UI.py

Blame
  • textured-spheres.h 290 B
    #ifndef TEXTURED_SPHERES_H
    #define TEXTURED_SPHERES_H
    
    #include <GL/gl.h>
    #include <GL/glu.h>
    
    extern void init_texture (char *image_filename, GLuint *texture);
    extern void draw_textured_sphere (GLuint texture, GLdouble radius, GLint slices, GLint stacks);
    
    #endif /* TEXTURED_SPHERES_H */