//////////////////////////////////////////////////////////////////////////////// // Copyright (c) 2011, Computer Graphics Group RWTH Aachen University // // All rights reserved. // //////////////////////////////////////////////////////////////////////////////// #ifndef ACGL_MATH_HH #define ACGL_MATH_HH #include /* * For our basic vector math we use the GLM library. * This library has the advantage that it was designed to mimic the * syntax of GLSL for datatypes (vectors, matrices etc.) as well as functions. * It also supports swizzling similar to GLSL. */ #define GLM_SWIZZL #include #include #include #include #endif