2023-11-06 11:49:58 -06:00
|
|
|
;; you should be in age-of-sail.core>
|
2023-11-05 21:30:20 -06:00
|
|
|
|
2023-11-07 14:12:46 -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-26 13:15:24 -06:00
|
|
|
:heading (normalize [0. 1.0])
|
2023-11-05 21:30:20 -06:00
|
|
|
:slots [{:type :downwind-sail :length 2 :furl 1.0}]
|
|
|
|
:velocity [1. 0.]}))
|
|
|
|
|
2023-11-07 14:12:46 -06:00
|
|
|
(reset! ships [virginia-woolfe revenge])
|
2023-11-05 21:30:20 -06:00
|
|
|
|
2023-11-21 09:55:37 -06:00
|
|
|
(show-ui)
|