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.
8 lines
359 B
Racket
8 lines
359 B
Racket
3 years ago
|
#lang racket/base
|
||
|
(provide (all-defined-out))
|
||
|
|
||
|
(struct $drawing-inst () #:transparent)
|
||
|
(struct $move $drawing-inst (posn) #:transparent) ; an absolute location in coordinate system (not relative to last loc)
|
||
3 years ago
|
(struct $text $drawing-inst (charint) #:transparent)
|
||
3 years ago
|
(struct $doc $drawing-inst (inst) #:transparent)
|
||
|
(struct $page $drawing-inst (inst) #:transparent)
|