00001
#ifndef _GRAPH3D_PEAKSERIES_H_
00002
#define _GRAPH3D_PEAKSERIES_H_
00003
00004
struct PeakSeries
00005 {
00006
unsigned isEmpty: 1;
00007
unsigned isLabelOnly: 1;
00008
unsigned show: 1;
00009
unsigned int_correction: 1;
00010
unsigned multiple_color: 1;
00011
unsigned isVariableSize: 1;
00012
00013
int type;
00014
00015 Byte *color_array;
00016
float *point_size_array;
00017
00018
int index;
00019
00020 Peak2f* peaks;
00021
int start;
00022
int stop;
00023
char** labels;
00024 };
00025
00026
typedef struct PeakSeries PeakSeries;
00027
00028
Insets4f PeakSeries_getInsets(PeakSeries* peaks);
00029
00030
#endif
00031