Changeset 452 for trunk


Ignore:
Timestamp:
07/30/15 19:52:14 (10 years ago)
Author:
epyon
Message:
  • lua_glm -> lua_math
Location:
trunk
Files:
4 edited
2 moved

Legend:

Unmodified
Added
Removed
  • trunk/nv/lua/lua_area.hh

    r449 r452  
    1010#include <nv/common.hh>
    1111#include <nv/core/position.hh>
    12 #include <nv/lua/lua_glm.hh>
     12#include <nv/lua/lua_math.hh>
    1313#include <nv/lua/lua_state.hh>
    1414#include <nv/lua/lua_values.hh>
  • trunk/nv/lua/lua_math.hh

    r449 r452  
    55// For conditions of distribution and use, see copying.txt file in root folder.
    66
    7 #ifndef NV_LUA_GLM_HH
    8 #define NV_LUA_GLM_HH
     7#ifndef NV_LUA_MATH_HH
     8#define NV_LUA_MATH_HH
    99
    1010#include <nv/common.hh>
     
    1616        namespace lua
    1717        {
    18                 void register_glm( lua_State* L );
     18                void register_math( lua_State* L );
    1919
    2020                template<> struct pass_traits< vec2 >  : metatable_pass_traits< vec2 >  { static const char* metatable() { return "vec2"; } };
     
    6464
    6565
    66 #endif // NV_LUA_GLM_HH
     66#endif // NV_LUA_MATH_HH
  • trunk/src/engine/particle_engine.cc

    r451 r452  
    1010#include <nv/core/random.hh>
    1111#include <nv/stl/utility.hh>
    12 #include <nv/lua/lua_glm.hh>
     12#include <nv/lua/lua_math.hh>
    1313#include <nv/core/logging.hh>
    1414
  • trunk/src/lua/lua_map_area.cc

    r437 r452  
    88#include "nv/stl/flags.hh"
    99#include "nv/lua/lua_area.hh"
    10 #include "nv/lua/lua_glm.hh"
     10#include "nv/lua/lua_math.hh"
    1111#include "nv/lua/lua_values.hh"
    1212#include "nv/lua/lua_raw.hh"
  • trunk/src/lua/lua_map_tile.cc

    r441 r452  
    1313#include "nv/core/random.hh"
    1414#include "nv/lua/lua_area.hh"
    15 #include "nv/lua/lua_glm.hh"
     15#include "nv/lua/lua_math.hh"
    1616#include "nv/lua/lua_values.hh"
    1717#include "nv/lua/lua_raw.hh"
  • trunk/src/lua/lua_math.cc

    r451 r452  
    55// For conditions of distribution and use, see copying.txt file in root folder.
    66
    7 #include "nv/lua/lua_glm.hh"
     7#include "nv/lua/lua_math.hh"
    88
    99#include "nv/lua/lua_raw.hh"
     
    359359}
    360360
    361 void nv::lua::register_glm( lua_State* L )
     361void nv::lua::register_math( lua_State* L )
    362362{
    363363        for (size_t i = 0; i < 256; ++i ) nlua_swizzel_lookup[i] = 255;
Note: See TracChangeset for help on using the changeset viewer.