Graphite Version 3
An experimental 3D geometry processing program
Loading...
Searching...
No Matches
vec_mat_interop.h File Reference

Functions to exchange vec2,vec3,vec4 and mat4 objects between Lua and Graphite. More...

Go to the source code of this file.

Namespaces

namespace  OGF
 Global Graphite namespace.
 

Functions

bool OGF::GOMLua::lua_to_graphite_mat_vec (lua_State *L, int index, Any &result, MetaType *mtype)
 Converts a Lua object into a Graphite vec or mat type.
 
bool OGF::GOMLua::lua_to_graphite_vec2i (lua_State *L, int index, vec2i &result)
 Converts a Lua object into a Graphite vec2i.
 
bool OGF::GOMLua::push_mat_vec (lua_State *L, const Any &matvec)
 Pushes a Graphite object onto the Lua stack.
 

Detailed Description

Functions to exchange vec2,vec3,vec4 and mat4 objects between Lua and Graphite.

Definition in file vec_mat_interop.h.

Function Documentation

◆ lua_to_graphite_mat_vec()

bool OGF::GOMLua::lua_to_graphite_mat_vec ( lua_State *  L,
int  index,
Any result,
MetaType mtype 
)

Converts a Lua object into a Graphite vec or mat type.

Works with vec2, vec3, vec4 of doubles and integers, and with mat4 of doubles.

Parameters
[in]La pointer to the Lua state
[in]indexthe index of the Lua object to be converted
[out]resultthe result, as an Any
[in]mtypea pointer to the expected meta-type
Return values
trueif conversion was successful
falseotherwise

◆ lua_to_graphite_vec2i()

bool OGF::GOMLua::lua_to_graphite_vec2i ( lua_State *  L,
int  index,
vec2i result 
)

Converts a Lua object into a Graphite vec2i.

Parameters
[in]La pointer to the Lua state
[in]indexthe index of the Lua object to be converted
[out]resulta reference to the result, as an vec2i
Return values
trueif conversion was successful
falseotherwise

◆ push_mat_vec()

bool OGF::GOMLua::push_mat_vec ( lua_State *  L,
const Any matvec 
)

Pushes a Graphite object onto the Lua stack.

Works with vec2, vec3, vec4 of doubles and integers, and with mat4 of doubles.

Parameters
[in]matvecthe input vec or mat stored in an Any
Return values
trueif conversion was successful
falseotherwise