Chi-Tech
|
Functions | |
Two | chi_lua::chiMeshCreateUnpartitioned1DOrthoMesh (array_float x_nodes) |
Two | chi_lua::chiMeshCreateUnpartitioned2DOrthoMesh (array_float x_nodes, array_float y_nodes) |
Two | chi_lua::chiMeshCreateUnpartitioned3DOrthoMesh (array_float x_nodes, array_float y_nodes, array_float z_nodes) |
These functions are considered "macros" because they encapsulate functionality available from lower level function calls.
Two chi_lua::chiMeshCreateUnpartitioned1DOrthoMesh | ( | array_float | x_nodes | ) |
Creates a 1D Mesh from an array of 1D vertices.
x_nodes | array_float An Array of floating point numbers denoting 1D nodes along x-axis. |
An example 1D mesh creation below:
Definition at line 2231 of file lua_functions.c.
Two chi_lua::chiMeshCreateUnpartitioned2DOrthoMesh | ( | array_float | x_nodes, |
array_float | y_nodes | ||
) |
Creates a 2D Orthogonal Mesh from arrays of 1D vertices.
x_nodes | array_float An Array of floating point numbers denoting 1D nodes along x-axis. |
y_nodes | array_float An Array of floating point numbers denoting 1D nodes along y-axis. |
An example 2D mesh creation below:
Definition at line 2257 of file lua_functions.c.
Two chi_lua::chiMeshCreateUnpartitioned3DOrthoMesh | ( | array_float | x_nodes, |
array_float | y_nodes, | ||
array_float | z_nodes | ||
) |
Creates a 3D Orthogonal Mesh from arrays of 1D vertices. The underlying mesher is an extruder.
x_nodes | array_float An Array of floating point numbers denoting 1D nodes along x-axis. |
y_nodes | array_float An Array of floating point numbers denoting 1D nodes along y-axis. |
z_nodes | array_float An Array of floating point numbers denoting 1D nodes along z-axis. |
An example 3D mesh creation below:
Definition at line 2287 of file lua_functions.c.