Browse Source

Cleaned up header includes.

master
jgoppert 9 years ago
parent
commit
cefe7b3e80
  1. 5
      matrix/Euler.hpp
  2. 5
      matrix/Quaternion.hpp
  3. 2
      matrix/Scalar.hpp
  4. 2
      matrix/SquareMatrix.hpp
  5. 2
      matrix/Vector.hpp
  6. 3
      matrix/Vector3.hpp
  7. 2
      matrix/matrix.hpp

5
matrix/Euler.hpp

@ -7,9 +7,8 @@ @@ -7,9 +7,8 @@
*/
#pragma once
#include <Vector.hpp>
#include <Dcm.hpp>
#include <Quaternion.hpp>
#include "matrix.hpp"
namespace matrix
{

5
matrix/Quaternion.hpp

@ -7,9 +7,8 @@ @@ -7,9 +7,8 @@
*/
#pragma once
#include <Vector.hpp>
#include <Dcm.hpp>
#include <Euler.hpp>
#include "matrix.hpp"
namespace matrix
{

2
matrix/Scalar.hpp

@ -14,7 +14,7 @@ @@ -14,7 +14,7 @@
#include <string.h>
#include <math.h>
#include "Matrix.hpp"
#include "matrix.hpp"
namespace matrix
{

2
matrix/SquareMatrix.hpp

@ -14,7 +14,7 @@ @@ -14,7 +14,7 @@
#include <string.h>
#include <math.h>
#include "Matrix.hpp"
#include "matrix.hpp"
namespace matrix
{

2
matrix/Vector.hpp

@ -7,7 +7,7 @@ @@ -7,7 +7,7 @@
*/
#pragma once
#include <Matrix.hpp>
#include "matrix.hpp"
namespace matrix
{

3
matrix/Vector3.hpp

@ -7,7 +7,8 @@ @@ -7,7 +7,8 @@
*/
#pragma once
#include <Vector.hpp>
#include "matrix.hpp"
namespace matrix
{

2
matrix/matrix.hpp

@ -7,5 +7,5 @@ @@ -7,5 +7,5 @@
#include "Euler.hpp"
#include "Dcm.hpp"
#include "Scalar.hpp"
#include "Quaternion.hpp"
#include "filter.hpp"

Loading…
Cancel
Save