Skip to content

Commit

Permalink
reduce default number of boids for better perf
Browse files Browse the repository at this point in the history
  • Loading branch information
levand committed Jun 21, 2013
1 parent a9ca948 commit ac7b17d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cljs/boids/main.cljs
Expand Up @@ -7,7 +7,7 @@
;; A boid consists of a position and a velocity (both EuclideanVectors) ;; A boid consists of a position and a velocity (both EuclideanVectors)
(defrecord Boid [pos vel]) (defrecord Boid [pos vel])


(def num-boids 30) (def num-boids 10)


(def default-options {:steer-force 0.1 (def default-options {:steer-force 0.1
:max-speed 6 :max-speed 6
Expand Down

0 comments on commit ac7b17d

Please sign in to comment.