Sha256: cfc4e45071e833e028d7dabd9eaf0d350abde261853a70af1cd38a1deb459f71
Contents?: true
Size: 843 Bytes
Versions: 3
Compression:
Stored size: 843 Bytes
Contents
# Crazy Flocking 3D Birds # by Ira Greenberg. # # Simulates a flock of birds using a Bird class and nested # pushMatrix() / popMatrix() functions. # Trigonometry functions handle the flapping and sinuous movement. load_library 'bird' BIRD_COUNT = 200 def setup size 640, 360, P3D no_stroke lights @birds = [] 0.upto(BIRD_COUNT) { |i| bird = Bird.new rand(-300 .. 300), rand(-300 .. 300), rand(-2500 .. -500), rand(5 .. 30), rand(5 .. 30) bird.set_flight rand(20 .. 340), rand(30 .. 350), rand( 1000 .. 4800 ), rand(-160 .. 160), rand(-55 .. 55), rand(-20 .. 20) bird.set_wing_speed rand(0.1 .. 3.75) bird.set_rot_speed rand(0.025 .. 0.15) @birds << bird } end def draw background 0 translate width/2, height/2, -700 @birds.each do |b| b.fly end end
Version data entries
3 entries across 3 versions & 1 rubygems