26 lines
372 B
C++
26 lines
372 B
C++
|
|
/*
|
|
* Author: Josh Holtrop
|
|
* DornerWorks screensaver
|
|
* The LogoBox class
|
|
*/
|
|
|
|
#ifndef LOGOBOX_H
|
|
#define LOGOBOX_H
|
|
|
|
#include <GL/gl.h>
|
|
|
|
class LogoBox
|
|
{
|
|
public:
|
|
LogoBox();
|
|
~LogoBox();
|
|
void draw();
|
|
const float * const getAABB() const;
|
|
float getWidth() const;
|
|
float getHeight() const;
|
|
float getDepth() const;
|
|
};
|
|
|
|
#endif
|