-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes.h
24 lines (24 loc) · 815 Bytes
/
types.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
* =====================================================================================
*
* Filename: types.h Version: 1.0 Created: 12/20/2014 03:44:12 PM
*
* Description: define some types for common use
*
* Author: Bo Wu (Robert), [email protected]
* Copyright: Copyright (c) 2014, Bo Wu
* Organization: National University of Defense Technology
*
* =====================================================================================
*/
#ifndef TYPES_H_
#define TYPES_H_
#include "Eigen/Dense"
typedef double Real;
typedef Eigen::MatrixXf MatrixXf;
typedef Eigen::MatrixXd MatrixXd;
typedef Eigen::MatrixXi MatrixXi;
typedef Eigen::VectorXd VectorXd;
typedef Eigen::Vector3d Vector3d;
typedef Eigen::Matrix<Real, Eigen::Dynamic, Eigen::Dynamic> MatrixXr;
#endif