2024-10-21 14:05:11 -05:00
|
|
|
(use-modules (graphgif)
|
|
|
|
(srfi srfi-9 gnu)
|
|
|
|
(ice-9 copy-tree))
|
2024-10-11 16:48:42 -05:00
|
|
|
|
2024-10-16 13:48:22 -05:00
|
|
|
(define red (create-color 1 0 0))
|
|
|
|
|
2024-10-21 14:05:11 -05:00
|
|
|
(define graph1 (generate-web 10 10))
|
2024-10-22 08:51:33 -05:00
|
|
|
(define graph2 (remove-rect (copy-tree graph1) 10 3 3 4 5))
|
2024-10-21 14:05:11 -05:00
|
|
|
(assq-set! graph2 0 (set-node-color (assq-ref graph2 0) red))
|
2024-10-22 09:25:54 -05:00
|
|
|
(write-graphs-to-file (vector graph1 graph2) "graph.gif")
|