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 my-ship (ref {:position [0. 0.]
|
2023-11-06 11:49:58 -06:00
|
|
|
:name "Virgina Woolfe"
|
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 [my-ship])
|
|
|
|
|
|
|
|
(start-program)
|
|
|
|
@my-ship
|
|
|
|
(stop-program)
|
|
|
|
|
|
|
|
(show-ui)
|
2023-11-06 11:49:58 -06:00
|
|
|
@tracked-ship
|