Changeset 452
- Timestamp:
- 07/30/15 19:52:14 (10 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/nv/lua/lua_area.hh
r449 r452 10 10 #include <nv/common.hh> 11 11 #include <nv/core/position.hh> 12 #include <nv/lua/lua_ glm.hh>12 #include <nv/lua/lua_math.hh> 13 13 #include <nv/lua/lua_state.hh> 14 14 #include <nv/lua/lua_values.hh> -
trunk/nv/lua/lua_math.hh
r449 r452 5 5 // For conditions of distribution and use, see copying.txt file in root folder. 6 6 7 #ifndef NV_LUA_ GLM_HH8 #define NV_LUA_ GLM_HH7 #ifndef NV_LUA_MATH_HH 8 #define NV_LUA_MATH_HH 9 9 10 10 #include <nv/common.hh> … … 16 16 namespace lua 17 17 { 18 void register_ glm( lua_State* L );18 void register_math( lua_State* L ); 19 19 20 20 template<> struct pass_traits< vec2 > : metatable_pass_traits< vec2 > { static const char* metatable() { return "vec2"; } }; … … 64 64 65 65 66 #endif // NV_LUA_ GLM_HH66 #endif // NV_LUA_MATH_HH -
trunk/src/engine/particle_engine.cc
r451 r452 10 10 #include <nv/core/random.hh> 11 11 #include <nv/stl/utility.hh> 12 #include <nv/lua/lua_ glm.hh>12 #include <nv/lua/lua_math.hh> 13 13 #include <nv/core/logging.hh> 14 14 -
trunk/src/lua/lua_map_area.cc
r437 r452 8 8 #include "nv/stl/flags.hh" 9 9 #include "nv/lua/lua_area.hh" 10 #include "nv/lua/lua_ glm.hh"10 #include "nv/lua/lua_math.hh" 11 11 #include "nv/lua/lua_values.hh" 12 12 #include "nv/lua/lua_raw.hh" -
trunk/src/lua/lua_map_tile.cc
r441 r452 13 13 #include "nv/core/random.hh" 14 14 #include "nv/lua/lua_area.hh" 15 #include "nv/lua/lua_ glm.hh"15 #include "nv/lua/lua_math.hh" 16 16 #include "nv/lua/lua_values.hh" 17 17 #include "nv/lua/lua_raw.hh" -
trunk/src/lua/lua_math.cc
r451 r452 5 5 // For conditions of distribution and use, see copying.txt file in root folder. 6 6 7 #include "nv/lua/lua_ glm.hh"7 #include "nv/lua/lua_math.hh" 8 8 9 9 #include "nv/lua/lua_raw.hh" … … 359 359 } 360 360 361 void nv::lua::register_ glm( lua_State* L )361 void nv::lua::register_math( lua_State* L ) 362 362 { 363 363 for (size_t i = 0; i < 256; ++i ) nlua_swizzel_lookup[i] = 255;
Note: See TracChangeset
for help on using the changeset viewer.