You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
299 B
Racket
10 lines
299 B
Racket
3 years ago
|
#lang racket/base
|
||
|
(provide (all-defined-out))
|
||
|
|
||
|
(struct $point (x y) #:transparent #:mutable)
|
||
|
(struct $size (width height) #:transparent #:mutable)
|
||
|
(struct $rect (origin size) #:transparent #:mutable)
|
||
|
|
||
|
(struct $quad (posn char) #:transparent #:mutable)
|
||
|
|
||
|
(define current-wrap-width (make-parameter 5))
|