2017-03-31 11:03:21 +05:30
|
|
|
//
|
|
|
|
// Author: Michael Cameron
|
|
|
|
// Email: chronokun@hotmail.com
|
|
|
|
//
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#ifndef __LIBRARIES_H__
|
|
|
|
#define __LIBRARIES_H__
|
|
|
|
|
|
|
|
// Visual Leak Detector
|
|
|
|
#if defined(DEBUG) || defined(_DEBUG)
|
|
|
|
//#include <vld.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Platform Libraries
|
|
|
|
#define NOMINMAX
|
2017-04-07 06:53:47 +05:30
|
|
|
//#define WIN32_LEAN_AND_MEAN
|
|
|
|
//#include <windows.h>
|
2017-03-31 11:03:21 +05:30
|
|
|
|
|
|
|
/* // Chronokun Libraries
|
|
|
|
#include "ckmath/ckmath.h" */
|
|
|
|
#include <Eigen/Core>
|
|
|
|
#include <Eigen/Geometry>
|
|
|
|
|
|
|
|
|
|
|
|
// C++ Libraries
|
|
|
|
#include <cstdint>
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <map>
|
|
|
|
#include <string>
|
|
|
|
#include <cstring>
|
|
|
|
#include <vector>
|
|
|
|
#include <array>
|
|
|
|
#include <fstream>
|
|
|
|
#include <chrono>
|
|
|
|
#include <ctime>
|
|
|
|
#include <iostream>
|
|
|
|
#include <sstream>
|
|
|
|
#include <locale>
|
|
|
|
|
2017-04-02 19:33:33 +05:30
|
|
|
// Vector access - since the data type has changed from struct to array.
|
|
|
|
#define X 0
|
|
|
|
#define Y 1
|
|
|
|
#define Z 2
|
|
|
|
|
2017-04-07 06:53:47 +05:30
|
|
|
#endif
|