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
5Lua based parsed function
6
7
8## Example usage:
9Create this object:
10\code
11params =
12{
13 param_name1 = value1,
14 param_name2 = value2,
15 --etc.
16}
17chi_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"
25background-color: #edf0f5;
26color: #9373A5;
27cursor: pointer;
28border: none;
29text-align: left;
30outline: none;
31font-size: 15px;
32margin: 2px 2px;
33border: 2px solid #687372;
34display: block;
35width: 100%;
36vertical-align: middle;
37padding-top: 4px;
38padding-bottom: 0px;
39"
40><span class="arrow" style="padding-left: 0px;">►</span><TT><B>input_dimension</B></TT><span style="color: #c4c1c0;">&nbsp &nbsp &nbsp &nbspThe 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"
48background-color: #edf0f5;
49color: #9373A5;
50cursor: pointer;
51border: none;
52text-align: left;
53outline: none;
54font-size: 15px;
55margin: 2px 2px;
56border: 2px solid #687372;
57display: block;
58width: 100%;
59vertical-align: middle;
60padding-top: 4px;
61padding-bottom: 0px;
62"
63><span class="arrow" style="padding-left: 0px;">►</span><TT><B>lua_function_name</B></TT><span style="color: #c4c1c0;">&nbsp &nbsp &nbsp &nbspName 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"
71background-color: #edf0f5;
72color: #9373A5;
73cursor: pointer;
74border: none;
75text-align: left;
76outline: none;
77font-size: 15px;
78margin: 2px 2px;
79border: 2px solid #687372;
80display: block;
81width: 100%;
82vertical-align: middle;
83padding-top: 4px;
84padding-bottom: 0px;
85"
86><span class="arrow" style="padding-left: 0px;">►</span><TT><B>output_dimension</B></TT><span style="color: #c4c1c0;">&nbsp &nbsp &nbsp &nbspThe 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*/