#| -*-Scheme-*-
-$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/x11graph.scm,v 1.20 1992/05/07 22:24:43 cph Exp $
+$Header: /Users/cph/tmp/foo/mit-scheme/mit-scheme/v7/src/runtime/x11graph.scm,v 1.21 1992/05/13 21:28:13 bal Exp $
Copyright (c) 1989-92 Massachusetts Institute of Technology
(x-graphics-set-vdc-extent 5)
(x-graphics-vdc-extent 1)
+ (x-graphics-fill-polygon 2)
+
(x-bytes-into-image 2)
(x-create-image 3)
(x-destroy-image 1)
(draw-line ,x-graphics/draw-line)
(draw-point ,x-graphics/draw-point)
(draw-text ,x-graphics/draw-text)
+ (fill-polygon ,x-graphics/fill-polygon)
(flush ,x-graphics/flush)
(font-structure ,x-graphics/font-structure)
(get-colormap ,x-graphics/get-colormap)
;;;; Miscellaneous Operations
+(define (x-graphics/fill-polygon device point-vector)
+ (x-graphics-fill-polygon (x-graphics-device/xw device) point-vector))
+
(define (x-graphics/copy-area device
source-x-left source-y-top
width height
(x-store-color (colormap/descriptor colormap) position r g b))
(define (x-colormap/store-colors colormap color-vector)
- (x-store-colors (colormap/descriptor colormap) color-vector))
\ No newline at end of file
+ (x-store-colors (colormap/descriptor colormap) color-vector))