2010-09-08 05:21:46 -03:00
|
|
|
// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: t -*-
|
|
|
|
|
|
|
|
// Assorted useful math operations for ArduPilot(Mega)
|
|
|
|
|
2012-02-17 19:00:26 -04:00
|
|
|
#include <AP_Common.h>
|
2011-12-15 22:47:07 -04:00
|
|
|
#include <stdint.h>
|
2010-09-08 05:21:46 -03:00
|
|
|
#include "vector2.h"
|
|
|
|
#include "vector3.h"
|
|
|
|
#include "matrix3.h"
|
2011-12-14 23:34:58 -04:00
|
|
|
#include "polygon.h"
|
2012-02-17 19:00:26 -04:00
|
|
|
|
|
|
|
// define AP_Param types AP_Vector3f and Ap_Matrix3f
|
|
|
|
AP_PARAMDEFV(Matrix3f, Matrix3f, AP_PARAM_MATRIX3F);
|
|
|
|
AP_PARAMDEFV(Vector3f, Vector3f, AP_PARAM_VECTOR3F);
|