CSCI3081W Drone Delivery System
BeelineStrategy.h
1 #ifndef BEELINE_H_
2 #define BEELINE_H_
3 
4 #include "PathStrategy.h"
5 
11 class BeelineStrategy : public PathStrategy {
12  public:
20 };
21 
22 #endif // BEELINE_H_
this class inherits from the PathStrategy class and is responsible for generating the beeline that th...
Definition: BeelineStrategy.h:11
BeelineStrategy(Vector3 pos, Vector3 des)
Construct a new Beeline Strategy object.
this class inhertis from the IStrategy class and is represents a movement strategy where the entity s...
Definition: PathStrategy.h:11
a simple class used for vector math, most function are self explanatory
Definition: vector3.h:12