age-of-sail/scratches/bootstrap.clj

20 lines
622 B
Clojure
Raw Normal View History

2023-11-06 11:49:58 -06:00
;; you should be in age-of-sail.core>
2023-11-05 21:30:20 -06:00
(def virginia-woolfe (ref {:position [0. 0.]
:name "Virginia Woolfe"
:heading (normalize [1.0 1.0])
:slots [{:type :downwind-sail :length 2 :furl 1.0}]
:velocity [1. 0.]}))
(def revenge (ref {:position [0. 0.]
:name "Revenge"
2023-11-05 21:30:20 -06:00
:heading (normalize [1.0 1.0])
:slots [{:type :downwind-sail :length 2 :furl 1.0}]
:velocity [1. 0.]}))
(reset! ships [virginia-woolfe revenge])
2023-11-05 21:30:20 -06:00
(show-ui)
2023-11-06 11:49:58 -06:00
@tracked-ship