Scenario:
develop a movement algorith with collision avoidance
Activity 1: Calculate a Steering Vector Algorithm.
Calculate a steering vector by hand to help review the vector math that will be required to complete Activity 2 of this project.
Activity 2: Design and code a steering algorithm class, then combine methods.
Step 1: Create a method to calculate the steering force on an entity for each of the following movement algorithms:
Seek
Flee
Arrive
Wander
Collisio…