forked from bartvdbraak/blender
084040acf4
=========================== - Added missed stub for blenderplayer, so it should compile again fine. - libmv is added to extern/. Script for bundling needed subset of sourcses from libmv repo is included there. - Eigen3 is also added to extern/. libmv depends on Eigen3 (which isnt't compatible with Eigen2 from API point of view). So both of versions are going to be in worktree for time (until code which used Eigen2 would be ported to Eigen3). - Added some functions to libmv-capi, so some things from this library could already be used. - Added the very basic implementation of 2D tracking. It should be treated as draft for tracking architecture which probably would be cleaned up, changed or whatever else. Current implementation was supposed to demonstrate that our structures and understading is correct to interact with libmv easily.
12 lines
304 B
Plaintext
12 lines
304 B
Plaintext
#ifndef EIGEN_ARRAY_MODULE_H
|
|
#define EIGEN_ARRAY_MODULE_H
|
|
|
|
// include Core first to handle Eigen2 support macros
|
|
#include "Core"
|
|
|
|
#ifndef EIGEN2_SUPPORT
|
|
#error The Eigen/Array header does no longer exist in Eigen3. All that functionality has moved to Eigen/Core.
|
|
#endif
|
|
|
|
#endif // EIGEN_ARRAY_MODULE_H
|