Package cs015.Swarm

Interface Summary
Directional This is an interface that objects which will be acted upon by any behaviors in the cs015.Swarm package must implement.
 

Class Summary
BeeBehavior This class represents a behavior that has a cs015.Swarm.Directional as the target that the behavior is acting on.
DoNothingBehavior This class represents a behavior that makes its target do nothing.
FollowLeaderBehavior This class represents a behavior that moves one Directional object towards another Directional object.
MoveBehavior This class represents an abstract superclass for all behaviors that move a class implementing the Directional interface.
MoveRandomlyBehavior This is a concrete subclass of a MoveBehavior that moves a Directional randomly about the screen.
Vector