#include <chplot.h>
#include <math.h>

int main() {
    array double x[200], y[200], t[200];
    class CPlot plot;

    linspace(t,0, 10*M_PI);
    x = sin(t);
    y = cos(t);
    plot.dimension(3);
    plot.data3D(x, y, t);
    plot.plotting();
}