blob: 744e8109a85ab27c84c22cf4ace023cb843c77e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef LINALG_H_
#define LINALG_H_
#ifndef EIGEN_DONT_ALIGN
#define EIGEN_DONT_ALIGN
#endif
#include <Eigen/Core>
#include <Eigen/Geometry>
#include <Eigen/Dense>
using Eigen::Vector2d;
using Eigen::Vector3d;
typedef Eigen::AlignedBox<double, 3> BoundingBox;
using Eigen::Matrix3f;
using Eigen::Matrix3d;
using Eigen::Transform3d;
#endif
|