9 lines
175 B
C++
9 lines
175 B
C++
#include "Quadcopter.h"
|
|
|
|
Quadcopter::Quadcopter() {
|
|
}
|
|
|
|
void Quadcopter::LinearMotion(Vector3 velocity, float yawRate) {
|
|
this->velocity = velocity;
|
|
this->yawRate = yawRate;
|
|
} |