hmm.
If I have the following project structure
/
/project.clj
/src/
/namespace/
/core.clj
Where should I put an image to load with load image
I have tried in the root, next to project.clj
I have tried next to core.clj
https://stackoverflow.com/questions/18714941/load-display-image-in-clojure-with-quil says it should be in the root
but no dice
Ah, other detail.
load-image
is failing with nullpointernot a file not found exception
(def present-image (atom nil))
(defn set-present-image! [img-path]
(reset! present-image (q/load-image img-path)))