OSCAR-code/Graphs/glcommon.h

23 lines
490 B
C
Raw Normal View History

/*
2011-06-26 08:30:44 +00:00
glcommon GL code & font stuff Header
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
License: GPL
*/
2011-06-26 08:30:44 +00:00
#ifndef GLCOMMON_H
#define GLCOMMON_H
#include <QtOpenGL/qgl.h>
#include <QColor>
2011-06-26 08:30:44 +00:00
void LinedRoundedRectangle(int x,int y,int w,int h,int radius,int lw,QColor color);
void RoundedRectangle(int x,int y,int w,int h,int radius,const QColor color);
2011-12-17 14:38:15 +00:00
#ifdef BUILD_WITH_MSVC
const double M_PI=3.141592653589793;
double round(double number);
#endif
2011-06-26 08:30:44 +00:00
#endif // GLCOMMON_H