Lines Matching refs:velocity
37 Velocity operator+(const Velocity& velocity) const
39 return Velocity(offsetPerSecond_ + velocity.offsetPerSecond_);
42 Velocity operator-(const Velocity& velocity) const
44 return Velocity(offsetPerSecond_ - velocity.offsetPerSecond_);
52 Velocity& operator+=(const Velocity& velocity)
54 offsetPerSecond_ += velocity.offsetPerSecond_;
58 bool operator==(const Velocity& velocity) const
60 return offsetPerSecond_ == velocity.offsetPerSecond_;
63 bool operator!=(const Velocity& velocity) const
65 return !operator==(velocity);