Tscope5
graphics09.c
////////////////////////////////////////////////////////////////////////////////
//
// __ ______
// / /_______________ ____ ___ / ____/
// / __/ ___/ ___/ __ \/ __ \/ _ \ /___ )
// / /_(__ ) /__/ /_/ / /_/ / __/ ____/ /
// \__/____/\___/\____/ .___/\___/ /_____/
// /_/
//
// graphics09.c
// - Illustration of the drawing parameters.
////////////////////////////////////////////////////////////////////////////////
#include <tscope5.h>
int main()
{
// open a display and set graphics parameters
ts5_set_coordinate_scale(TS5_RELATIVE_COORDINATES);
double i;
double thickness=0;
// draw circles with increasing thickness and diameter
for(i=0.1; i<1.0; i+=0.1) {
thickness++ ;
ts5_draw_circle(0.0, 0.0, i);
}
// wait for a click.
return 0;
}