Chi-Tech
chi_math__functions__LuaDimAToDimB.h
Go to the documentation of this file.
1
/** \defgroup chi_math__functions__LuaDimAToDimB chi_math.functions.LuaDimAToDimB
2
3
4
\ingroup DocMathFunctions
5
Lua based parsed function
6
7
8
## Example usage:
9
Create this object:
10
\code
11
params =
12
{
13
param_name1 = value1,
14
param_name2 = value2,
15
--etc.
16
}
17
chi_math.functions.LuaDimAToDimB.Create(params)
18
\endcode
19
## Required Input parameters
20
\htmlonly
21
22
<div style="display: block;">
23
<button type="button" class="droppy2" style=
24
"
25
background-color: #edf0f5;
26
color: #9373A5;
27
cursor: pointer;
28
border: none;
29
text-align: left;
30
outline: none;
31
font-size: 15px;
32
margin: 2px 2px;
33
border: 2px solid #687372;
34
display: block;
35
width: 100%;
36
vertical-align: middle;
37
padding-top: 4px;
38
padding-bottom: 0px;
39
"
40
><span class="arrow" style="padding-left: 0px;">►</span><TT><B>input_dimension</B></TT><span style="color: #c4c1c0;">       The dimension of the input values (excluding the position)</span></button>
41
<div class="content" style="display: none;">
42
<p><I>type=</I><span style="color: blue;"><TT>INTEGER</TT></span>. The dimension of the input values (excluding the position).
43
</p>
44
</div>
45
46
<button type="button" class="droppy2" style=
47
"
48
background-color: #edf0f5;
49
color: #9373A5;
50
cursor: pointer;
51
border: none;
52
text-align: left;
53
outline: none;
54
font-size: 15px;
55
margin: 2px 2px;
56
border: 2px solid #687372;
57
display: block;
58
width: 100%;
59
vertical-align: middle;
60
padding-top: 4px;
61
padding-bottom: 0px;
62
"
63
><span class="arrow" style="padding-left: 0px;">►</span><TT><B>lua_function_name</B></TT><span style="color: #c4c1c0;">       Name of the lua function</span></button>
64
<div class="content" style="display: none;">
65
<p><I>type=</I><span style="color: blue;"><TT>STRING</TT></span>. Name of the lua function
66
</p>
67
</div>
68
69
<button type="button" class="droppy2" style=
70
"
71
background-color: #edf0f5;
72
color: #9373A5;
73
cursor: pointer;
74
border: none;
75
text-align: left;
76
outline: none;
77
font-size: 15px;
78
margin: 2px 2px;
79
border: 2px solid #687372;
80
display: block;
81
width: 100%;
82
vertical-align: middle;
83
padding-top: 4px;
84
padding-bottom: 0px;
85
"
86
><span class="arrow" style="padding-left: 0px;">►</span><TT><B>output_dimension</B></TT><span style="color: #c4c1c0;">       The dimension of the output values (excluding the position)</span></button>
87
<div class="content" style="display: none;">
88
<p><I>type=</I><span style="color: blue;"><TT>INTEGER</TT></span>. The dimension of the output values (excluding the position).
89
</p>
90
</div>
91
92
</div>
93
\endhtmlonly
94
95
\htmlonly
96
97
<script>
98
99
{
100
var coll = document.getElementsByClassName("droppy2");
101
var i;
102
103
for (i = 0; i < coll.length; i++) {
104
coll[i].addEventListener("click", function() {
105
this.classList.toggle("active");
106
var content = this.nextElementSibling;
107
if (content.style.display === "block") {
108
content.style.display = "none";
109
this.childNodes[0].innerText = "►"
110
} else {
111
content.style.display = "block";
112
this.children[0].innerText = "▼"
113
}
114
});
115
}
116
}</script>
117
118
\endhtmlonly
119
120
*/
doc
generated_files
input_docs
chi_math__functions__LuaDimAToDimB.h
Generated by
1.9.3