searchmove.cpp
Go to the documentation of this file.
1 #include "searchmove.h"
2 
3 SearchMove::SearchMove(double v, double w, double dt)
4 {
5  V=v;
6  W=w;
7  DeltaT = dt;
8 }
9 
11 {
12  return (V == other.V) && (W == other.W) && (DeltaT == other.DeltaT);
13 }
bool operator==(const SearchMove &other)
Definition: searchmove.cpp:10
double V
Definition: searchmove.h:9
double DeltaT
Definition: searchmove.h:9
double W
Definition: searchmove.h:9


igvc
Author(s): Matthew Barulic , Al Chaussee
autogenerated on Sun May 10 2015 16:18:45