Koolplot displays static x-y graphs, for example:
#include "koolplot.h"
int main(){
Plotdata x,y;
for (int i = -500 ; i <= 500; i++) {
double y_value = sin(M_PI*i / 180.0) / (M_PI*i/180.0);
x << i;
y << y_value;
}
plot(x, y, MAGENTA);
}
You will need a project file (see the starting FLTK document) but with koolplot application selected instead of FLTK.
See the on-line help in Quincy for more details.
MSC 18 Oct 2005