##- # Author: Brian Tiffin # Dedicated to the public domain # # Date: October, 2016 # Modified: 2016-10-30/12:13-0400 ##+ # # DrawDisk.icn, demonstrate drawing a Disk # procedure main() window := open("DrawDisk", "gl", "bg=black", "buffer=on", "size=400,260", "dim=3")#, "canvas=hidden") WAttrib(window,"light0=on, ambient blue-green","fg=specular white") # A disk DrawDisk(window, 0.0,0.19,-2.2, 0.3,0.4) # save image for the document Refresh(window) WSync(window) WriteImage(window, "../images/DrawDisk.png") close(window) end