
Also, use keywords for `make-pen' and `make-brush'. Adding `make-pen' and `make-color' creates many conflicts among teaching libraries, such as `2htdp/image'. These are easy to fix up in the tree, but adding such obvious names to `racket/draw' may create other compatibility problems, so we might have to reconsider the names. In consultation with Asumu.
14 lines
452 B
Racket
14 lines
452 B
Racket
#lang scheme/base
|
|
|
|
(require scribble/manual
|
|
(for-label scheme/base
|
|
scheme/contract
|
|
scheme/class
|
|
(except-in scheme/gui/base make-color make-pen)))
|
|
|
|
(provide (all-from-out scribble/manual)
|
|
(for-label (all-from-out scheme/base
|
|
scheme/contract
|
|
scheme/class
|
|
scheme/gui/base)))
|