Chi-Tech
chi_mesh__ExtrusionLayer.h
Go to the documentation of this file.
1/** \defgroup chi_mesh__ExtrusionLayer chi_mesh.ExtrusionLayer
2
3
4\ingroup doc_MeshGenerators
5A collection of parameters defining an extrusion layer.
6
7<B>Note:</B> This object is not constructable
8## Optional Input parameters
9\htmlonly
10
11<div style="display: block;">
12<button type="button" class="droppy2" style=
13"
14background-color: #edf0f5;
15color: #9373A5;
16cursor: pointer;
17border: none;
18text-align: left;
19outline: none;
20font-size: 15px;
21margin: 2px 2px;
22border: 2px solid #687372;
23display: block;
24width: 100%;
25vertical-align: middle;
26padding-top: 4px;
27padding-bottom: 0px;
28"
29><span class="arrow" style="padding-left: 0px;">►</span><TT><B>h</B></TT><span style="color: #c4c1c0;">&nbsp &nbsp &nbsp &nbspLayer height</span></button>
30<div class="content" style="display: none;">
31 <p><I>type=</I><span style="color: blue;"><TT>FLOAT</TT></span>. Layer height. Cannot be specified if "z" is specified.
32</p>
33 <p>Default value: <TT style="color:grey">1(double)</TT></p>
34</div>
35
36<button type="button" class="droppy2" style=
37"
38background-color: #edf0f5;
39color: #9373A5;
40cursor: pointer;
41border: none;
42text-align: left;
43outline: none;
44font-size: 15px;
45margin: 2px 2px;
46border: 2px solid #687372;
47display: block;
48width: 100%;
49vertical-align: middle;
50padding-top: 4px;
51padding-bottom: 0px;
52"
53><span class="arrow" style="padding-left: 0px;">►</span><TT><B>n</B></TT><span style="color: #c4c1c0;">&nbsp &nbsp &nbsp &nbspNumber of sub-layers</span></button>
54<div class="content" style="display: none;">
55 <p><I>type=</I><span style="color: blue;"><TT>INTEGER</TT></span>. Number of sub-layers
56</p>
57 <p>Default value: <TT style="color:grey">1</TT></p>
58 <p>Allowable values: <TT>> 0</TT></p>
59</div>
60
61<button type="button" class="droppy2" style=
62"
63background-color: #edf0f5;
64color: #9373A5;
65cursor: pointer;
66border: none;
67text-align: left;
68outline: none;
69font-size: 15px;
70margin: 2px 2px;
71border: 2px solid #687372;
72display: block;
73width: 100%;
74vertical-align: middle;
75padding-top: 4px;
76padding-bottom: 0px;
77"
78><span class="arrow" style="padding-left: 0px;">►</span><TT><B>z</B></TT><span style="color: #c4c1c0;">&nbsp &nbsp &nbsp &nbspThe z-coordinate at the top of the layer</span></button>
79<div class="content" style="display: none;">
80 <p><I>type=</I><span style="color: blue;"><TT>FLOAT</TT></span>. The z-coordinate at the top of the layer. Cannot be specified if "n" is specified.
81</p>
82 <p>Default value: <TT style="color:grey">0(double)</TT></p>
83</div>
84
85</div>
86\endhtmlonly
87
88\htmlonly
89
90<script>
91
92{
93 var coll = document.getElementsByClassName("droppy2");
94 var i;
95
96 for (i = 0; i < coll.length; i++) {
97 coll[i].addEventListener("click", function() {
98 this.classList.toggle("active");
99 var content = this.nextElementSibling;
100 if (content.style.display === "block") {
101 content.style.display = "none";
102 this.childNodes[0].innerText = "►"
103 } else {
104 content.style.display = "block";
105 this.children[0].innerText = "▼"
106 }
107 });
108 }
109}</script>
110
111\endhtmlonly
112
113*/