Chi-Tech
chi_mesh__MeshModifiersApply.h
Go to the documentation of this file.
1/** \defgroup chi_mesh__MeshModifiersApply chi_mesh.MeshModifiersApply
2
3
4\ingroup DocMeshModifiers
5Lua wrapper function for applying mesh modifiers
6
7
8## Function Syntax:
9\code
10chi_mesh.MeshModifiersApply(ARRAY arg0)
11\endcode
12## Required Input parameters
13\htmlonly
14
15<div style="display: block;">
16<button type="button" class="droppy2" style=
17"
18background-color: #edf0f5;
19color: #9373A5;
20cursor: pointer;
21border: none;
22text-align: left;
23outline: none;
24font-size: 15px;
25margin: 2px 2px;
26border: 2px solid #687372;
27display: block;
28width: 100%;
29vertical-align: middle;
30padding-top: 4px;
31padding-bottom: 0px;
32"
33><span class="arrow" style="padding-left: 0px;">►</span><TT><B>arg0</B></TT><span style="color: #c4c1c0;">&nbsp &nbsp &nbsp &nbspA list of handles to the modifiers to apply</span></button>
34<div class="content" style="display: none;">
35 <p><I>type=</I><span style="color: blue;"><TT>ARRAY</TT></span>. A list of handles to the modifiers to apply.
36</p>
37</div>
38
39</div>
40\endhtmlonly
41
42\htmlonly
43
44<script>
45
46{
47 var coll = document.getElementsByClassName("droppy2");
48 var i;
49
50 for (i = 0; i < coll.length; i++) {
51 coll[i].addEventListener("click", function() {
52 this.classList.toggle("active");
53 var content = this.nextElementSibling;
54 if (content.style.display === "block") {
55 content.style.display = "none";
56 this.childNodes[0].innerText = "►"
57 } else {
58 content.style.display = "block";
59 this.children[0].innerText = "▼"
60 }
61 });
62 }
63}</script>
64
65\endhtmlonly
66
67*/