00001
#ifndef _GRAPH3D_DATASERIES_H_
00002
#define _GRAPH3D_DATASERIES_H_
00003
00004
00005
struct DataSeries
00006 {
00007
unsigned show: 1;
00008
int type;
00009
float color[3];
00010
int index;
00011
00012
float half_width;
00013
00014
float* X_ARRAY;
00015
int X_START;
00016
int X_STOP;
00017
00018
float* Y_ARRAY;
00019
int Y_START;
00020
int Y_STOP;
00021
00022
float y_max;
00023
00024
float* error;
00025 };
00026
00027
typedef struct DataSeries DataSeries;
00028
00029
void DataSeries_fprint(FILE* fp, DataSeries* DATA);
00030
int DataSeries_applyFilter(DataSeries* data,
char* szFilter);
00031
Insets4f DataSeries_getInsets(DataSeries* data);
00032
00033
#endif
00034
00035