##- # Author: Brian Tiffin # Dedicated to the public domain # # Date: October, 2016 # Modified: 2016-12-25/22:22-0500 ##+ # # DrawCurve.icn, demonstrate drawing an Arc # procedure main() w := open("DrawCurve", "g", "size=65,40", "canvas=hidden") # Some curves Fg(w, "vivid orange") DrawCurve(w, 10,10, 15,25, 35,20) Fg(w, "blue") DrawCurve(w, 30,30, 15,20, 40,10) # save image for the document WSync(w) WriteImage(w, "../images/DrawCurve.png") close(w) end