blob: 4d476a2b94600c5a65612e96225caa219e16b95f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#
# Copyright (c) 2001 by Jim Menard <jimm@io.com>
#
# Released under the same license as Ruby. See
# http://www.ruby-lang.org/en/LICENSE.txt.
#
require 'Flock'
require 'Boid'
require 'Params'
class Flock
attr_reader :members
def initialize
@members = []
end
def add(boid)
@members << boid
boid.flock = self
end
def draw
@members.each { | boid | boid.draw() }
end
def move
@members.each { | boid | boid.move() }
end
# Return distance between two boid's positions.
def distBetween(b1, b2)
return b1.position.distanceTo(b2.position)
end
# Center of mass
def centerExcluding(b)
p = Point.new()
@members.each { | boid |
p.addPoint(boid.position) unless boid == b
}
p.divideBy(@members.length - 1)
return p
end
end
|