Chi-Tech
chi_mesh__SurfaceMeshLogicalVolume.h
Go to the documentation of this file.
1/** \defgroup chi_mesh__SurfaceMeshLogicalVolume chi_mesh.SurfaceMeshLogicalVolume
2
3
4\ingroup LuaLogicVolumes
5
6
7
8## Example usage:
9Create this object:
10\code
11params =
12{
13 param_name1 = value1,
14 param_name2 = value2,
15 --etc.
16}
17chi_mesh.SurfaceMeshLogicalVolume.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>surface_mesh_handle</B></TT><span style="color: #c4c1c0;">&nbsp &nbsp &nbsp &nbspHandle to a surface mesh that will represent this object</span></button>
41<div class="content" style="display: none;">
42 <p><I>type=</I><span style="color: blue;"><TT>INTEGER</TT></span>. Handle to a surface mesh that will represent this object
43</p>
44</div>
45
46</div>
47\endhtmlonly
48
49\htmlonly
50
51<script>
52
53{
54 var coll = document.getElementsByClassName("droppy2");
55 var i;
56
57 for (i = 0; i < coll.length; i++) {
58 coll[i].addEventListener("click", function() {
59 this.classList.toggle("active");
60 var content = this.nextElementSibling;
61 if (content.style.display === "block") {
62 content.style.display = "none";
63 this.childNodes[0].innerText = "►"
64 } else {
65 content.style.display = "block";
66 this.children[0].innerText = "▼"
67 }
68 });
69 }
70}</script>
71
72\endhtmlonly
73
74*/