REBOL Programming/draw

      USAGE:

      DRAW image commands 
      

      DESCRIPTION:

      Draws scalable vector graphics to an image (returned).

      DRAW is a native value.

      ARGUMENTS

      • image -- Image or size of image (Type: image pair)
      • commands -- (Type: block)

      SOURCE CODE

      draw: native[
          {Draws scalable vector graphics to an image (returned).} 
          image [image! pair!] "Image or size of image" 
          commands [block!]
      ]
      
      {{BookCat}}
      
      Last modified on 27 October 2012, at 22:12