NXC  Version 1.2.1 r5
 All Data Structures Files Functions Variables Groups Pages
ex_SysDrawEllipse.nxc

This is an example of how to use the SysDrawEllipse function along with the DrawEllipseType structure.

task main()
{
args.Center.X = 50;
args.Center.Y = 32;
repeat (10) {
args.SizeX = 20+Random(15);
args.SizeY = 20+Random(10);
}
while(true);
}