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.
typesetting/quad/quad2/quad.rkt

10 lines
299 B
Racket

#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))