mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
81 lines
2.1 KiB
C++
81 lines
2.1 KiB
C++
#include <math.h>
|
|
#include "gpiechart.h"
|
|
|
|
gPieChart::gPieChart(gPointData *d,QColor col)
|
|
:gLayer(d)
|
|
{
|
|
color.clear();
|
|
color.push_back(col);
|
|
}
|
|
gPieChart::~gPieChart()
|
|
{
|
|
}
|
|
|
|
void gPieChart::Plot(gGraphWindow & w,float scrx,float scry)
|
|
{
|
|
if (!m_visible) return;
|
|
if (!data) return;
|
|
if (!data->IsReady()) return;
|
|
|
|
int start_px=w.GetLeftMargin();
|
|
int start_py=w.GetBottomMargin();
|
|
int width=scrx-(w.GetLeftMargin()+w.GetRightMargin());
|
|
int height=scry-(w.GetTopMargin()+w.GetBottomMargin());
|
|
|
|
float diameter=MIN(width,height);
|
|
diameter-=4;
|
|
float radius=diameter/2.0;
|
|
|
|
double total=0;
|
|
for (int i=0;i<data->np[0];i++)
|
|
total+=data->point[0][i].y();
|
|
|
|
|
|
double j=0.0;
|
|
double sum=0.0;
|
|
double step=1.0/360.0;
|
|
float px,py;
|
|
//glEnable(GL_TEXTURE_2D);
|
|
//glEnable(GL_DEPTH_TEST);
|
|
glEnable(GL_BLEND);
|
|
glEnable(GL_POLYGON_SMOOTH);
|
|
glEnable(GL_LINE_SMOOTH);
|
|
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
|
|
//glBlendFunc( GL_SRC_ALPHA_SATURATE, GL_ONE );
|
|
glHint(GL_POLYGON_SMOOTH_HINT, GL_NICEST);
|
|
|
|
for (int i=0;i<data->np[0];i++) {
|
|
j=(data->point[0][i].y()/total); // ratio of this pie slice
|
|
QColor col1=color[i % color.size()];
|
|
w.qglColor(col1);
|
|
glPolygonMode(GL_FRONT_AND_BACK,GL_FILL);
|
|
glBegin(GL_POLYGON);
|
|
glVertex2f(start_px+radius+2, start_py+radius+2);
|
|
|
|
for (double q=sum;q<sum+j;q+=step) {
|
|
px=start_px+radius+sin(q*2*M_PI)*radius;
|
|
py=start_py+radius+cos(q*2*M_PI)*radius;
|
|
glVertex2f(px,py);
|
|
}
|
|
glEnd();
|
|
|
|
glPolygonMode(GL_BACK,GL_LINE);
|
|
w.qglColor(Qt::black);
|
|
glBegin(GL_POLYGON);
|
|
glVertex2f(start_px+radius+2, start_py+radius+2);
|
|
for (double q=sum;q<sum+j;q+=step) {
|
|
px=start_px+radius+sin(q*2*M_PI)*radius;
|
|
py=start_py+radius+cos(q*2*M_PI)*radius;
|
|
glVertex2f(px,py);
|
|
}
|
|
glEnd();
|
|
|
|
|
|
sum+=j;
|
|
}
|
|
glDisable(GL_POLYGON_SMOOTH);
|
|
glDisable(GL_BLEND);
|
|
//glDisable(GL_DEPTH_TEST);
|
|
//glDisable(GL_TEXTURE_2D);
|
|
}
|