X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fpiechart.c;h=d4cec9295c53fef6146b1ed6c92b85daef499f13;hb=843e8862e77bcc2813a944b6feb524ea6cc2ab6a;hp=53c2b5fdb56aa7273d5335e1270ae63c368ab0e8;hpb=46cc6dd316280579f5b03dfd39d01bc7daf88df7;p=pspp-builds.git diff --git a/src/piechart.c b/src/piechart.c index 53c2b5fd..d4cec929 100644 --- a/src/piechart.c +++ b/src/piechart.c @@ -19,7 +19,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#include +#include "config.h" #include "chart.h" #include #include @@ -54,26 +54,26 @@ piechart_plot(const char *title, const struct slice *slices, int n_slices) int i; double total_magnetude=0; - struct chart ch; + struct chart *ch; - chart_initialise(&ch); + ch = chart_create(); - const double left_label = ch.data_left + - (ch.data_right - ch.data_left)/10.0; + const double left_label = ch->data_left + + (ch->data_right - ch->data_left)/10.0; - const double right_label = ch.data_right - - (ch.data_right - ch.data_left)/10.0; + const double right_label = ch->data_right - + (ch->data_right - ch->data_left)/10.0; - const double centre_x = (ch.data_right + ch.data_left ) / 2.0 ; - const double centre_y = (ch.data_top + ch.data_bottom ) / 2.0 ; + const double centre_x = (ch->data_right + ch->data_left ) / 2.0 ; + const double centre_y = (ch->data_top + ch->data_bottom ) / 2.0 ; const double radius = min( - 5.0 / 12.0 * (ch.data_top - ch.data_bottom), - 1.0 / 4.0 * (ch.data_right - ch.data_left) + 5.0 / 12.0 * (ch->data_top - ch->data_bottom), + 1.0 / 4.0 * (ch->data_right - ch->data_left) ); - chart_write_title(&ch, title); + chart_write_title(ch, title); for (i = 0 ; i < n_slices ; ++i ) total_magnetude += slices[i].magnetude; @@ -92,7 +92,7 @@ piechart_plot(const char *title, const struct slice *slices, int n_slices) radius * cos(angle + segment_angle/2.0); /* Fill the segment */ - draw_segment(&ch, + draw_segment(ch, centre_x, centre_y, radius, angle, segment_angle, data_colour[i]); @@ -100,19 +100,19 @@ piechart_plot(const char *title, const struct slice *slices, int n_slices) /* Now add the labels */ if ( label_x < centre_x ) { - pl_line_r(ch.lp, label_x, label_y, + pl_line_r(ch->lp, label_x, label_y, left_label, label_y ); - pl_moverel_r(ch.lp,0,5); - pl_alabel_r(ch.lp,0,0,slices[i].label); + pl_moverel_r(ch->lp,0,5); + pl_alabel_r(ch->lp,0,0,slices[i].label); } else { - pl_line_r(ch.lp, + pl_line_r(ch->lp, label_x, label_y, right_label, label_y ); - pl_moverel_r(ch.lp,0,5); - pl_alabel_r(ch.lp,'r',0,slices[i].label); + pl_moverel_r(ch->lp,0,5); + pl_alabel_r(ch->lp,'r',0,slices[i].label); } angle += segment_angle; @@ -120,10 +120,10 @@ piechart_plot(const char *title, const struct slice *slices, int n_slices) } /* Draw an outline to the pie */ - pl_filltype_r(ch.lp,0); - pl_fcircle_r (ch.lp, centre_x, centre_y, radius); + pl_filltype_r(ch->lp,0); + pl_fcircle_r (ch->lp, centre_x, centre_y, radius); - chart_finalise(&ch); + chart_submit(ch); } static void @@ -208,3 +208,4 @@ draw_segment(struct chart *ch, pl_restorestate_r(ch->lp); } +