#include <command.h>
Public Member Functions | |
Command () | |
constructor More... | |
Command (double v, double w) | |
constructor More... | |
Command (const Command &o) | |
copy constructor More... | |
void | set (double v, double w) |
double & | v () |
const double & | v () const |
double & | w () |
const double & | w () const |
Friends | |
std::ostream & | operator<< (std::ostream &os, const Command &o) |
Command::Command | ( | ) |
constructor
Definition at line 4 of file command.cpp.
Command::Command | ( | double | v, |
double | w | ||
) |
constructor
Definition at line 6 of file command.cpp.
Command::Command | ( | const Command & | o | ) |
copy constructor
Definition at line 8 of file command.cpp.
void Command::set | ( | double | v, |
double | w | ||
) |
v | linear velocity |
w | angular velocity |
Definition at line 26 of file command.cpp.
double & Command::v | ( | ) |
Definition at line 10 of file command.cpp.
const double & Command::v | ( | ) | const |
Definition at line 14 of file command.cpp.
double & Command::w | ( | ) |
Definition at line 18 of file command.cpp.
const double & Command::w | ( | ) | const |
Definition at line 22 of file command.cpp.
|
friend |