Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Printing and Rebol

From: sqlab:gmx at: 13-Jul-2001 9:03

Hello Gabriele We could define a graphbox analog to your textbox, where we describe the graphic part of a a page. Two different approaches for the set of graphic primitives came to my mind; 1, with relative positioning starting from current position 'moveto x-start y-start 'style thickness red.green.blue 'lineto x-end y-end 'arc x-center y-center angle 'fill pattern red.green.blue or 2, absolute positioning 'line x-start y-start x-end y-end thickness red.green.blue 'arc x-start y-start x-center y-center angle thickness red.green.blue 'box x-start y-start x-traverse y-traverse red.green.blue 'circle x-start y-start x-center y-center angle red.green.blue What do you think? AR