// ---------------------------- // just draw a red hyperabola // ---------------------------- // set window size 400x400 width =400; height=400; // disable clipping clip=none; // set curve color white curve_red =255; curve_green=0; curve_blue =0; // set curve width curve_width=2; curve_gamma=3; curve = x^2-y^2-1; clear_screen; draw_curve;