Christophe Geuzaine and Jean-François Remacle
Gmsh is an automatic 3D finite element mesh generator with build-in pre- and post-processing facilities. This is the Gmsh Reference Manual for Gmsh 2.4 (11 July 2010).
--- The Detailed Node Listing ---
Overview
How to read this reference manual?
Running Gmsh on your system
General tools
Expressions
Geometry module
Geometry commands
Mesh module
Mesh commands
Solver module
Post-processing module
File formats
Legacy formats
Tutorial
Options
Information for developers
Gmsh is “free software”; this means that everyone is free to use it and to redistribute it on a free basis. Gmsh is not in the public domain; it is copyrighted and there are restrictions on its distribution, but these restrictions are designed to permit everything that a good cooperating citizen would want to do. What is not allowed is to try to prevent others from further sharing any version of Gmsh that they might get from you.
Specifically, we want to make sure that you have the right to give away copies of Gmsh, that you receive source code or else can get it if you want it, that you can change Gmsh or use pieces of Gmsh in new free programs, and that you know you can do these things.
To make sure that everyone has such rights, we have to forbid you to deprive anyone else of these rights. For example, if you distribute copies of Gmsh, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must tell them their rights.
Also, for our own protection, we must make certain that everyone finds out that there is no warranty for Gmsh. If Gmsh is modified by someone else and passed on, we want their recipients to know that what they have is not what we distributed, so that any problems introduced by others will not reflect on our reputation.
The precise conditions of the license for Gmsh are found in the General Public License that accompanies the source code (see License). Further information about this license is available from the GNU Project webpage http://www.gnu.org/copyleft/gpl-faq.html. Detailed copyright information can be found in Copyright and credits.
The source code and various pre-compiled versions of Gmsh (for Unix, Windows and Mac OS) can be downloaded from the webpage http://geuz.org/gmsh/.
If you use Gmsh, we would appreciate that you mention it in your work. References, as well as the latest news about Gmsh development, are always available on http://geuz.org/gmsh/. Please send all Gmsh-related questions to the public Gmsh mailing list at gmsh@geuz.org.
If you want to integrate Gmsh into a closed-source software, or want to sell a modified closed-source version of Gmsh, please contact one of the authors. You can purchase a version of Gmsh under a different license, with “no strings attached” (for example allowing you to take parts of Gmsh and integrate them into your own proprietary code).
Gmsh is an automatic three-dimensional finite element mesh generator with built-in pre- and post-processing facilities. Its design goal is to provide a simple meshing tool for academic problems with parametric input and advanced visualization capabilities.
Gmsh is built around four modules: geometry, mesh, solver and post-processing. All geometrical, mesh, solver and post-processing instructions are prescribed either interactively using the graphical user interface (GUI) or in text files using Gmsh's own scripting language. Interactive actions generate language bits in the input files, and vice versa. This makes it possible to automate all treatments, using loops, conditionals and external system calls. A brief description of the four modules is given hereafter.
Gmsh uses a boundary representation (“BRep”) to describe geometries. Models are created in a bottom-up flow by successively defining points, oriented lines (line segments, circles, ellipses, splines, ...), oriented surfaces (plane surfaces, ruled surfaces, triangulated surfaces, ...) and volumes. Compound groups of geometrical entities (called “physical groups”) can also be defined, based on these elementary geometric entities. Gmsh's scripting language allows all geometrical entities to be fully parametrized.
A finite element mesh is a tessellation of a given subset of the three-dimensional space by elementary geometrical elements of various shapes (in Gmsh's case: lines, triangles, quadrangles, tetrahedra, prisms, hexahedra and pyramids), arranged in such a way that if two of them intersect, they do so along a face, an edge or a node, and never otherwise. All the finite element meshes produced by Gmsh are considered as “unstructured”, even if they were generated in a “structured” way (e.g., by extrusion). This implies that the elementary geometrical elements are defined only by an ordered list of their nodes but that no predefined order relation is assumed between any two elements.
The mesh generation is performed in the same bottom-up flow as the geometry creation: lines are discretized first; the mesh of the lines is then used to mesh the surfaces; then the mesh of the surfaces is used to mesh the volumes. In this process, the mesh of an entity is only constrained by the mesh of its boundary. For example, in three dimensions, the triangles discretizing a surface will be forced to be faces of tetrahedra in the final 3D mesh only if the surface is part of the boundary of a volume; the line elements discretizing a curve will be forced to be edges of tetrahedra in the final 3D mesh only if the curve is part of the boundary of a surface, itself part of the boundary of a volume; a single node discretizing a point in the middle of a volume will be forced to be a vertex of one of the tetrahedra in the final 3D mesh only if this point is connected to a curve, itself part of the boundary of a surface, itself part of the boundary of a volume. This automatically assures the conformity of the mesh when, for example, two surfaces share a common line. But this also implies that the discretization of an “isolated” (n-1)-th dimensional entity inside an n-th dimensional entity does not constrain the n-th dimensional mesh—unless it is explicitly told to do so (see Miscellaneous mesh commands). Every meshing step is constrained by the characteristic length field, which can be uniform, specified by characteristic lengths associated with points in the geometry, or defined by general “fields” (a scalar field defined on another mesh using post-processing view, threshold fields associated with point or line “attractors”, etc.).
For each meshing step, all structured mesh directives are executed first, and serve as additional constraints for the unstructured parts 1.
External solvers can be interfaced with Gmsh through Unix or TCP/IP sockets, which permits to launch external computations and to collect and process the results directly from within Gmsh's post-processing module. The default solver interfaced with Gmsh is GetDP (http://www.geuz.org/getdp/). Examples on how to interface solvers written in C, C++, Perl and Python are available in the source distribution (in the utils/solvers/ directory).
Gmsh can load and manipulate multiple post-processing scalar, vector or tensor maps along with the geometry and the mesh. Scalar fields are represented by iso-value lines/surfaces or color maps, while vector fields are represented by three-dimensional arrows or displacement maps. Post-processing functions include section computation, offset, elevation, boundary and component extraction, color map and range modification, animation, vector graphic output, etc. All the post-processing options can be accessed either interactively or through the input script files. Scripting permits to automate all post-processing operations, as for example to create animations. User-defined operations can also be performed on post-processing views through dynamically loadable plugins.
Gmsh is a (relatively) small program, and was principally developed “in academia, to solve academic problems”... Nevertheless, over the years, many people outside universities have found Gmsh useful in their day-to-day jobs. Here is a tentative list of what Gmsh does best:
Due to its historical background and limited developer manpower, Gmsh has also some (a lot of?) weaknesses:
If you have the skills and some free time, feel free to join the project! We gladly accept any code contributions (see Information for developers) to remedy the aforementioned (and all other) shortcomings...
If you think you have found a bug in Gmsh, you can report it by electronic mail to the Gmsh mailing list at gmsh@geuz.org. Please send as precise a description of the problem as you can, including sample input files that produce the bug. Don't forget to mention both the version of Gmsh and the version of your operation system (see Command-line options to see how to get this information).
See Frequently asked questions, and the TODO.txt file in the distribution to see which problems we already know about.
Gmsh can be used at three levels:
You can skip most of this reference manual if you only want to use Gmsh at the first level (i.e., interactively with the GUI). Just read the next chapter (see Running Gmsh on your system) to learn how to launch Gmsh on your system, then go experiment with the GUI and the tutorial files (see Tutorial) provided in the distribution. Screencasts that show how to use the GUI are available here: http://www.geuz.org/gmsh/screencasts/.
The aim of the reference manual is to explain everything you need to use Gmsh at the second level, i.e., using the built-in scripting language. A Gmsh script file is an ASCII text file that contains instructions in Gmsh's built-in scripting language. Such a file is interpreted by Gmsh's parser, and can be given any extension (or no extension at all). By convention, Gmsh uses the .geo extension for geometry scripts, and the .pos extension for parsed post-processing datasets. Once you master the tutorial (read the source files: they are heavily commented!), start reading chapter General tools, then proceed with the next four chapters, which detail the syntax of the geometry, mesh, solver and post-processing scripting commands. You will see that most of the interactive actions in the GUI have a direct equivalent in the scripting language. If you want to use Gmsh as a pre- or post-processor for your own software, you will also want to learn about the non-scripting input/output files that Gmsh can read/write. In addition to Gmsh's native “MSH” file format (see File formats), Gmsh can read/write many standard mesh files, depending on how it was built: check the `File->Save As' menu for a list of available formats.
Finally, to use Gmsh at the third level (i.e., to link the Gmsh library with your own code), you will need to learn the internal Gmsh Application Programming Interface (API). No complete documentation of this API is available yet; a good starting point is Source code structure, which gives a short introduction to Gmsh's internal source code structure. Then have a look e.g. at the examples in the utils/api_demos/ directory in the source code.
Here are the rules we tried to follow when writing this reference manual. Note that metasyntactic variable definitions stay valid throughout the manual (and not only in the sections where the definitions appear).
this.
:) after a metasyntactic variable separates the variable
from its definition.
< > pairs.
|.
To launch Gmsh in interactive mode, just double-click on the Gmsh icon, or type
> gmsh
at your shell prompt in a terminal. This will open two windows: the graphic window (with a status bar at the bottom) and the menu window (with a menu bar and some context-dependent buttons).
To open the first tutorial file (see Tutorial), select the `File->Open' menu, and choose t1.geo in the input field. When using a terminal, you can specify the file name directly on the command line, i.e.:
> gmsh t1.geo
To perform the mesh generation, go to the mesh module (by selecting `Mesh' in the module menu) and choose the dimension in the context-dependent buttons (`1D' will mesh all the lines; `2D' will mesh all the surfaces—as well as all the lines if `1D' was not called before; `3D' will mesh all the volumes—and all the surfaces if `2D' was not called before). To save the resulting mesh in the current mesh format click on the `Save' button, or select the appropriate format and file name with the `File->Save As' menu. The default mesh file name is based on the name of the current active model, with an appended extension depending on the mesh format2.
To create a new geometry or to modify an existing geometry, select 'Geometry' in the module menu, and follow the context-dependent buttons. For example, to create a spline, select `Elementary', `Add', `New' and `Spline'. You will then be asked to select a list of points, and to type e to finish the selection (or q to abort it). Once the interactive command is completed, a text string is automatically added at the end of the current script file. You can edit the script file by hand at any time by pressing the `Edit' button in the `Geometry' menu and then reloading the model by pressing `Reload'. For example, it is often faster to define variables and points directly in the script file, and then use the GUI to define the lines, the surfaces and the volumes interactively.
Several files can be loaded simultaneously in Gmsh. The first one defines the active model and the others are `merged' into this model. You can merge such files with the `File->Merge' menu, or by directly specifying the names of the files on the command line. For example, to merge the post-processing views contained in the files view1.pos and view5.msh together with the geometry of the first tutorial t1.geo, you can type the following command:
> gmsh t1.geo view1.pos view5.msh
In the Post-Processing module (select `Post-Processing' in the module menu), three buttons will appear, respectively labeled `A scalar map', `Nodal scalar map' and `Element 1 vector'. In this example the views contain several time steps: you can loop through them with the small “remote-control” icons at the bottom of the graphic window. A mouse click on the view name will toggle the visibility of the selected view, while a click on the arrow button on the right will provide access to the view's options.
Note that all the options specified interactively can also be directly specified in the script files. You can save the current options of the current active model with the `File->Save Options' menu. This will create a new option file with the same filename as the active model, but with an extra .opt extension added. The next time you open this model, the associated options will be automatically loaded, too. To save the current options as your default preferences for all future Gmsh sessions, use the `File->Save Default Options' menu instead. Finally, you can also save the current options in an arbitrary file by choosing the `Gmsh options' format in `File->Save As'.
Gmsh can be run non-interactively in `batch' mode, without GUI3. For example, to mesh the first tutorial in batch mode, just type:
> gmsh t1.geo -2
To mesh the same example, but with the background mesh available in the file bgmesh.pos, type:
> gmsh t1.geo -2 -bgm bgmesh.pos
For the list of all command-line options, see Command-line options.
Geometry options:
-0-tol floatMesh options:
-1, -2, -3-part int-saveall-o file-format string-bin-algo string-smooth int-optimize[_netgen]-order int-clscale float-clmin float-clmax float-clcurv-rand float-bgm filePost-processing options:
-noview-link int-combineDisplay options:
-nodb-fontsize int-theme string-display stringOther options:
--a, -g, -m, -s, -p-pid-listen-v int-nopopup-string "string"-option file-convert files-version-info-helpIn the following, for a 2 button mouse, Middle button = Shift+Left button. For a 1 button mouse, Middle button = Shift+Left button and Right button = Alt+Left button.
Move the mouse:
Left button:
Ctrl+Left button: Start a lasso zoom or a lasso selection/unselection
Middle button:
Ctrl+Middle button: Orthogonalize display
Right button:
Ctrl+Right button: Reset to default viewpoint
(On Mac Ctrl is replaced by Cmd (the `Apple key') in the shortcuts below.)
This chapter describes the general commands and options that can be used in Gmsh's script files. By “general”, we mean “not specifically related to one of the geometry, mesh, solver or post-processing modules”. Commands peculiar to these modules will be introduced in Geometry module, Mesh module, Solver module, and Post-processing module, respectively.
Gmsh script files support both C and C++ style comments:
/* and */ pairs is ignored;
// is ignored.
These commands won't have the described effects inside double quotes or inside keywords. Also note that `white space' (spaces, tabs, new line characters) is ignored inside all expressions.
The two constant types used in Gmsh scripts are real and string (there is no integer type). These types have the same meaning and syntax as in the C or C++ programming languages.
Floating point expressions (or, more simply, “expressions”) are denoted by the metasyntactic variable expression (remember the definition of the syntactic rules in Syntactic rules), and are evaluated during the parsing of the script file:
expression:
real |
string |
string [ expression ] |
# string [ ] |
( expression ) |
operator-unary-left expression |
expression operator-unary-right |
expression operator-binary expression |
expression operator-ternary-left expression operator-ternary-right expression |
built-in-function |
real-option |
GetValue("string", expression)
Such expressions are used in most of Gmsh's scripting commands. The third and fourth cases in this definition permit to extract one item from a list (see below) and get the size of a list, respectively. The operators operator-unary-left, operator-unary-right, operator-binary, operator-ternary-left and operator-ternary-right are defined in Operators. For the definition of built-in-functions, see Built-in functions. The various real-options are listed in Options.
The last case in the definition allows to ask the user for a value
interactively. For example, inserting GetValue("Value of parameter
alpha?", 5.76) in an input file will query the user for the value of a
certain parameter alpha, assuming the default value is 5.76. If the
option General.NoPopup is set (see General options list), no
question is asked and the default value is automatically used.
List of expressions are also widely used, and are defined as:
expression-list:
expression-list-item <, expression-list-item> ...
with
expression-list-item:
expression |
expression : expression |
expression : expression : expression |
string [ ] |
string [ { expression-list } ] |
Point { expression } |
transform |
extrude
The second case in this last definition permits to create a list containing the range of numbers comprised between two expressions, with a unit incrementation step. The third case also permits to create a list containing the range of numbers comprised between two expressions, but with a positive or negative incrementation step equal to the third expression. The fourth case permits to reference an expression list. The fifth case permits to reference an expression sublist (whose elements are those corresponding to the indices provided by the expression-list). The sixth case permits to retrieve the coordinates of a given geometry point (see Points). The last two cases permit to retrieve the indices of entities created through geometrical transformations and extrusions (see Transformations, and Extrusions).
To see the practical use of such expressions, have a look at the first
couple of examples in Tutorial. Note that, in order to lighten the
syntax, you can always omit the braces {} enclosing an
expression-list if this expression-list only contains a single
item. Also note that a braced expression-list can be preceded by a
minus sign in order to change the sign of all the
expression-list-items.
Character expressions are defined as:
char-expression:
"string" |
Today |
StrPrefix ( char-expression ) |
StrRelative ( char-expression ) |
StrCat ( char-expression , char-expression ) |
Sprintf ( char-expression , expression-list ) |
Sprintf ( char-expression )
Sprintf ( char-option )
The third and fourth cases in this definition permit to take the
prefix (e.g. to remove the extension) or the relative path of a string. The
fifth case permits to concatenate two character expressions, and the sixth
and seventh are equivalent to the sprintf C function (where
char-expression is a format string that can contain floating point
formatting characters: %e, %g, etc.). The last case permits to
use the value of a char-option as a char-expression. The
various char-options are listed in Options.
Character expressions are mostly used to specify non-numeric options and input/output file names. See t8.geo, for an interesting usage of char-expressions in an animation script.
Colors expressions are hybrids between fixed-length braced expression-lists and strings:
color-expression:
string |
{ expression, expression, expression } |
{ expression, expression, expression, expression } |
color-option
The first case permits to use the X Windows names to refer to colors,
e.g., Red, SpringGreen, LavenderBlush3, ...
(see Common/Colors.h in the source code for a complete list). The
second case permits to define colors by using three expressions to
specify their red, green and blue components (with values comprised
between 0 and 255). The third case permits to define colors by using
their red, green and blue color components as well as their alpha
channel. The last case permits to use the value of a color-option
as a color-expression. The various color-options are
listed in Options.
See t3.geo, for an example of the use of color expressions.
Gmsh's operators are similar to the corresponding operators in C and C++. Here is the list of the unary, binary and ternary operators currently implemented.
operator-unary-left:
-!operator-unary-right:
++--operator-binary:
^*/%+-==!=>>=<<=&&|||| is evaluated even if the first one is true).
operator-ternary-left:
?:
The evaluation priorities are summarized below4 (from stronger to
weaker, i.e., * has a highest evaluation priority than +).
Parentheses () may be used anywhere to change the order of
evaluation:
(), [], ., #
^
!, ++, --, - (unary)
*, /, %
+, -
<, >, <=, >=
==, !=
&&
||
?:
=, +=, -=, *=, /=
A built-in function is composed of an identifier followed by a pair of parentheses containing an expression-list (the list of its arguments)5. Here is the list of the built-in functions currently implemented:
build-in-function:
Acos ( expression )Asin ( expression )Atan ( expression )Atan2 ( expression, expression )Ceil ( expression )Cos ( expression )Cosh ( expression )Exp ( expression )Fabs ( expression )Fmod ( expression, expression )Floor ( expression )Hypot ( expression, expression )Log ( expression )Log10 ( expression )Modulo ( expression, expression )Fmod( expression, expression ).
Rand ( expression )Sqrt ( expression )Sin ( expression )Sinh ( expression )Tan ( expression )Tanh ( expression )
User-defined functions take no arguments, and are evaluated as if a file
containing the function body was included at the location of the Call
statement.
Function stringFunction
string', and can contain any Gmsh command.
ReturnCall string;See t5.geo, for an example of a user-defined function. A shortcoming of Gmsh's scripting language is that all variables are “public”. Variables defined inside the body of a function will thus be available outside, too!
Loops and conditionals are defined as follows, and can be imbricated:
For ( expression : expression )For ( expression :
expression )' and the matching EndFor are executed.
For ( expression : expression : expression )For ( expression : expression :
expression )' and the matching EndFor are executed.
For string In { expression : expression }For string In {
expression : expression }' and the matching EndFor are
executed.
For string In { expression : expression : expression }For string In { expression :
expression : expression }' and the matching EndFor are
executed.
EndForFor command.
If ( expression )If ( expression )' and the matching
Endif is evaluated if expression is non-zero.
EndIfIf command.
See t5.geo, for an example of For and If commands. Gmsh
does not provide any Else (or similar) command at the time of this
writing.
The following commands can be used anywhere in a Gmsh script:
= expression;PiGMSH_MAJOR_VERSIONGMSH_MINOR_VERSIONGMSH_PATCH_VERSIONMPI_SizeMPI_Ranknewpnewp permits to know the highest number already attributed (plus
one). This is mostly useful when writing user-defined functions
(see User-defined functions) or general geometric primitives, when one
does not know a priori which numbers are already attributed, and
which ones are still available.
newlnewsnewvnewllnewslnewregnewreg returns
the maximum of newp, newl, news, newv,
newll, newsl and all physical entity numbers6.
[ ] = { };[] with an
empty list.
[ ] = { expression-list };[] with the
list expression-list, or affects expression-list to an
existing expression list identifier. (Remember the remark we made when
we defined expression-lists: the braces enclosing an
expression-list are optional if the list only contains a single
item.)
[ { expression-list } ] = { expression-list }; = expression; = char-expression; = color-expression; | real-option += expression; | real-option -= expression; | real-option *= expression; | real-option /= expression; [ ] += { expression-list }; [ { expression-list } ] += { expression-list }; [ { expression-list } ] -= { expression-list }; [ { expression-list } ] *= { expression-list }; [ { expression-list } ] /= { expression-list };Exit;Printf ( char-expression , expression-list );Printf is equivalent to the printf C function:
char-expression is a format string that can contain formatting
characters (%f, %e, etc.). Note that all expressions
are evaluated as floating point values in Gmsh (see Expressions), so
that only valid floating point formatting characters make sense in
char-expression. See t5.geo, for an example of the use of
Printf.
Printf ( char-expression , expression-list ) > char-expression;Printf above, but output the expression in a file.
Printf ( char-expression , expression-list ) >> char-expression;Printf above, but appends the expression at the end of
the file.
Merge char-expression;Draw;BoundingBox;BoundingBox { expression, expression, expression, expression, expression, expression };Delete Model;Delete Physicals;Delete Variables;Delete string;Mesh expression;Print char-expression;Print.Format (see General options list). If the
path in char-expression is not absolute, char-expression is
appended to the path of the current file.
Sleep expression;System char-expression;SyncModel;Include char-expression;The list of all the general char-options, real-options and color-options (in that order—check the default values to see the actual types) is given in General options list. Most of these options are accessible in the GUI, but not all of them. When running Gmsh interactively, changing an option in the script file will modify the option in the GUI in real time. This permits for example to resize the graphical window in a script, or to interact with animations in the script and in the GUI at the same time.
Gmsh's geometry module provides a simple CAD engine, using a boundary
representation (“BRep”) approach: you need to first define points
(using the Point command: see below), then lines (using
Line, Circle, Spline, ..., commands or by
extruding points), then surfaces (using for example the Plane
Surface or Ruled Surface commands, or by extruding lines), and
finally volumes (using the Volume command or by extruding
surfaces).
These geometrical entities are called “elementary” in Gmsh's jargon, and are assigned identification numbers when they are created:
Elementary geometrical entities can then be manipulated in various
ways, for example using the Translate, Rotate,
Scale or Symmetry commands. They can be deleted with the
Delete command, provided that no higher-dimension entity
references them.
Compound groups of elementary geometrical entities can also be defined and are called “physical” entities. These physical entities cannot be modified by geometry commands: their only purpose is to assemble elementary entities into larger groups, possibly modifying their orientation, so that they can be referred to by the mesh module as single entities. As is the case with elementary entities, each physical point, physical line, physical surface or physical volume must be assigned a unique identification number. See Mesh module, for more information about how physical entities affect the way meshes are saved.
The next subsections describe all the available geometry commands. These commands can be used anywhere in a Gmsh script file. Note that the following general syntax rule is followed for the definition of geometrical entities: “If an expression defines a new entity, it is enclosed between parentheses. If an expression refers to a previously defined entity, it is enclosed between braces.”
Point ( expression ) = { expression, expression, expression <, expression > };Physical Point ( expression | char-expression ) = { expression-list };BSpline ( expression ) = { expression-list };Circle ( expression ) = { expression, expression, expression };CatmullRom ( expression ) = { expression-list };CatmullRom is a synonym for Spline.
Ellipse ( expression ) = { expression, expression, expression, expression };Line ( expression ) = { expression, expression };Spline ( expression ) = { expression-list };Line Loop ( expression ) = { expression-list };Line Loop command. (Line loops are used to
create surfaces: see Surfaces.)
Physical Line ( expression | char-expression ) = { expression-list };Plane Surface ( expression ) = { expression-list };Ruled Surface ( expression ) = { expression-list } < In Sphere { expression } >;In Sphere argument forces the surface to be a
spherical patch (the extra parameter gives the identification number of
the center of the sphere).
Surface Loop ( expression ) = { expression-list };Physical Surface ( expression | char-expression ) = { expression-list };Volume ( expression ) = { expression-list };Physical Volume ( expression | char-expression ) = { expression-list };Lines, surfaces and volumes can also be created through extrusion of points, lines and surfaces, respectively. Here is the syntax of the geometrical extrusion commands (go to Structured grids, to see how these commands can be extended in order to also extrude the mesh):
extrude:
Extrude { expression-list } { extrude-list }Extrude { { expression-list }, { expression-list }, expression } { extrude-list }Extrude { { expression-list }, { expression-list }, { expression-list }, expression } { extrude-list }with
extrude-list:
Point | Line | Surface { expression-list }; ...
As explained in Floating point expressions, extrude can be used in an expression, in which case it returns a list of identification numbers. By default, the list contains the “top” of the extruded entity at index 0 and the extruded entity at index 1, followed by the “sides” of the extruded entity at indices 2, 3, etc. For example:
Point(1) = {0,0,0};
Point(2) = {1,0,0};
Line(1) = {1, 2};
out[] = Extrude{0,1,0}{ Line{1}; };
Printf("top line = %g", out[0]);
Printf("surface = %g", out[1]);
Printf("side lines = %g and %g", out[2], out[3]);
This behaviour can be changed with the
Geometry.ExtrudeReturnLateralEntities option (see Geometry options list).
Geometrical transformations can be applied to elementary entities, or to
copies of elementary entities (using the Duplicata command: see
below). The syntax of the transformation commands is:
transform:
Dilate { { expression-list }, expression } { transform-list }Rotate { { expression-list }, { expression-list }, expression } { transform-list }Symmetry { expression-list } { transform-list }Translate { expression-list } { transform-list }Boundary { transform-list }with
transform-list:
Point | Line | Surface | Volume { expression-list }; ... |
Duplicata { Point | Line | Surface | Volume { expression-list }; ... } |
transform
Here is a list of all other geometry commands currently available:
Coherence;Coherence command automatically after each geometrical
transformation, unless Geometry.AutoCoherence is set to zero
(see Geometry options list).
Delete { Point | Line | Surface | Volume { expression-list }; ... }Delete has no effect (the line will have to be deleted before the
point can).
Hide { Point | Line | Surface | Volume { expression-list }; ... }General.VisibilityMode is set to 0 or 1.
Hide char-expression;General.VisibilityMode is
set to 0 or 1 (char-expression can for example be
"*").
Show { Point | Line | Surface | Volume { expression-list }; ... }General.VisibilityMode is set to 0 or 1.
Show char-expression;General.VisibilityMode is
set to 0 or 1 (char-expression can for example be
"*").
The list of all the options that control the behavior of geometry commands, as well as the way geometrical entities are handled in the GUI, is give in Geometry options list.
Gmsh's mesh module regroups several 1D, 2D and 3D meshing algorithms, all producing grids conforming in the sense of finite elements (see Mesh):
Recombine Surface is used: see
Miscellaneous mesh commands). The 3D unstructured
algorithms generate tetrahedra.
Recombine commands (see Structured grids, and
Miscellaneous mesh commands). The 3D structured algorithms
generate tetrahedra, hexahedra, prisms and pyramids, depending on the
type of the surface meshes they are based on.
All meshes can be subdivided to generate fully quadrangular or fully
hexahedral meshes with the Mesh.SubdivisionAlgorihm option
(see Mesh options list). However, beware that the quality of
subdivided elements initially generated with an unstructured
algorithm can be quite poor.
Gmsh currently provides a choice between three 2D unstructured algorithms and between two 3D unstructured algorithms. Each algorithm has its own advantages and disadvantages.
For all 2D unstructured algorithms a Delaunay mesh that contains all the points of the 1D mesh is initially constructed using a divide-and-conquer algorithm7. Missing edges are recovered using edge swaps8. After this initial step three different algorithms can be applied to generate the final mesh:
These algorithms can be ranked as follows:
Robustness Performance Element quality
MeshAdapt 1 3 2
Delaunay 2 1 2
Frontal 3 2 1
For very complex curved surfaces the “MeshAdapt” algorithm is the best choice. When high element quality is important, the “Frontal” algorithm should be tried. For very large meshes of plane surfaces the “Delaunay” algorithm is the fastest.
In 3D two unstructured algorithms are available:
The “Delaunay” algorithm is the most robust and the fastest, and is
the only one that supports the Field mechanism to specify element
sizes (see Characteristic lengths). However, this algorithm will
sometimes modify the surface mesh, and is thus not suitable for
producing hybrid structured/unstructured grids. In that case the
“Frontal” algorithm should be preferred. The quality of the elements
produced by both algorithms is comparable. If element quality is
important the mesh optimizer(s) should be applied.
If only elementary geometrical entities are defined (or if the
Mesh.SaveAll option is set; see Mesh options list), the
grid produced by the mesh module will be saved “as is”. That is, all
the elements in the grid will be saved using the identification number
of the elementary entities they discretize as their elementary region
number (and 0 as their physical region number14; File formats). This can sometimes be
inconvenient:
To remedy these problems, the geometry module (see Geometry module) introduces the notion of “physical” entities (also called “physical groups”). The purpose of physical entities is to assemble elementary entities into larger, possibly overlapping groups, and to control the orientation of the elements in these groups. The introduction of physical entities in large models usually greatly facilitates the manipulation of the model (e.g., using `Tools->Visibility' in the GUI) and the interfacing with external solvers.
In the MSH file format (see File formats), if physical entities are defined, the output mesh only contains those elements that belong to physical entities. Other file formats each treat physical entities in slightly different ways, depending on their capability to define groups.
In all cases, Gmsh reindexes the mesh vertices and elements so that they are numbered in a continuous sequence in the output files. Note that the numbers displayed on screen after mesh generation thus usually differ from the ones saved in the mesh files. To check the actual numbers saved in the output file just load the file back using `File->Open'.
The mesh module commands mostly permit to modify the characteristic lengths and specify structured grid parameters. The actual mesh “actions” (i.e., “mesh the lines”, “mesh the surfaces” and “mesh the volumes”) cannot be specified in the script files. They have to be given either in the GUI or on the command line (see Running Gmsh on your system, and Command-line options).
There are three ways to specify the size of the mesh elements for a given geometry:
Mesh.CharacteristicLengthFromPoints is set (it is by
default), you can simply specify characteristic lengths at the
geometrical points of the model (with the Point command: see
Points). The size of the mesh elements will then be computed by
linearly interpolating these characteristic lengths on the initial mesh
(see Mesh). This might sometimes lead to over-refinement in some
areas, so that you may have to add “dummy” geometrical entities in the
model in order to get the desired element sizes.
This method works with all the algorithms implemented in the mesh module. The final element sizes are of course constrained by the structured algorithms for which the element sizes are explicitly specified (e.g., transfinite and extruded grids: see Structured grids).
Mesh.CharacteristicLengthFromCurvature is set (it is
not by default), the mesh will be adapted with respect to the curvature
of the geometrical entities.
PostView field specifies an explicit background mesh in the
form of a scalar post-processing view (see Post-processing commands, and File formats) in which the nodal values are the
target element sizes. This method is very general but it requires a
first (usually rough) mesh and a way to compute the target sizes on this
mesh (usually through an error estimation procedure, in an iterative
process of mesh adaptation).
(Note that you can also load a background mesh directly from the command
line using the -bgm option (see Command-line options), or in
the GUI by selecting `Apply as background mesh' in the post-processing
view option menu.)
Box field specifies the size of the elements inside and outside
of a parallelipipedic region.
Threshold field specifies the size of the mesh according to the
distance to some geometrical entities. These entities can for example be
geometry points and lines specified by an Attractor field.
MathEval field specifies the size of the mesh using an explicit
mathematical function.
Min field specifies the size as the minimum of the sizes
computed using other fields
Fields are supported by all the algorithms except those based on Netgen. The list of available fields with their options is given below.
The three aforementioned methods can be used simultaneously, in which case the smallest element size is selected at any given point.
All element sizes are further constrained by the
Mesh.CharacteristicLengthMin, Mesh.CharacteristicLengthMax
and Mesh.CharacteristicLengthFactor options (see Mesh options list)
Here are the mesh commands that are related to the specification of characteristic lengths:
Characteristic Length { expression-list } = expression;Field[expression] = string;Field[expression].string = char-expression | expression | expression-list;Background Field = expression;Min or Max field (see below).
Here is the list of all available fields with their associated options:
AttractorEdgesList{}
FacesList{}
NNodesByEdge20
NodesList{}
BoundaryLayerDistMax10
DistMin1
IField0
LcMax1
LcMin0.1
Sigmoid0
StopAtDistMax0
BoxVIn0
VOut0
XMax0
XMin0
YMax0
YMin0
ZMax0
ZMin0
CurvatureDelta0
IField1
CylinderRadius0
VIn0
VOut0
XAxis0
XCenter0
YAxis0
YCenter0
ZAxis1
ZCenter0
GradientDelta0
IField1
Kind0
LaplacianDelta0.1
IField1
LonLatIField1
MathEvalF"F2 + Sin(z)"
MaxFieldsList{}
MaxEigenHessianDelta0
IField1
MeanDelta0.0001
IField0
MinFieldsList{}
ParamFX""
FY""
FZ""
IField1
PostViewCropNegativeValues1
IView0
RestrictEdgesList{}
FacesList{}
IField1
RegionsList{}
StructuredFileName""
TextFormat0
ThresholdDistMax10
DistMin1
IField0
LcMax1
LcMin0.1
Sigmoid0
StopAtDistMax0
UTMIField1
Zone0
Extrude { expression-list } { extrude-list layers } layers:
Layers { expression } |
Layers { { expression-list }, { expression-list } } |
Recombine; ...
In the first Layers form, expression gives the number of
elements to be created in the (single) layer. In the second form, the
first expression-list defines how many elements should be created
in each extruded layer, and the second expression-list gives the
normalized height of each layer (the list should contain a sequence of
n numbers 0 < h1 < h2 < ... < hn <= 1). See
t3.geo, for an example.
For line extrusions, the Recombine option will recombine triangles
into quadrangles when possible. For surface extrusions, the
Recombine option will recombine tetrahedra into prisms, hexahedra or
pyramids.
Please note that, starting with Gmsh 2.0, region numbers cannot be
specified explicitly anymore in Layers commands. Instead, as with
all other geometry commands, you must use the automatically created
entity identifier created by the extrusion command. For example, the
following extrusion command will return the id of the new “top”
surface in num[0] and the id of the new volume in num[1]:
num[] = Extrude {0,0,1} { Surface{1}; Layers{10}; };
Extrude { { expression-list }, { expression-list }, expression } { extrude-list layers }Extrude { { expression-list }, { expression-list }, { expression-list }, expression } { extrude-list layers }Extrude { Surface { expression-list }; layers }Transfinite Line { expression-list } | "*" = expression < Using Progression | Bump expression >;Using Progression expression' instructs the
transfinite algorithm to distribute the nodes following a geometric
progression (Progression 2 meaning for example that each line element
in the series will be twice as long as the preceding one). The optional
argument `Using Bump expression' instructs the transfinite
algorithm to distribute the nodes with a refinement at both ends of the
line.
Transfinite Surface { expression-list } | "*" < = { expression-list } > < Left | Right | Alternate > ;Transfinite Volume { expression-list } | "*" < = { expression-list } > ;Here is a list of all other mesh commands currently available:
Point | Line { expression-list } In Surface { expression };Coherence Mesh;Color color-expression { Point | Line | Surface | Volume { expression-list }; ... }Hide { Point | Line | Surface | Volume { expression-list }; ... }General.VisibilityMode is set to 0 or 2.
Hide char-expression;General.VisibilityMode is set to 0 or 2
(char-expression can for example be "*").
Recombine Surface { expression-list } | "*" < = expression >;Save char-expression;Mesh.Format (see Mesh options list). If the path in
char-expression is not absolute, char-expression is appended
to the path of the current file.
Show { Point | Line | Surface | Volume { expression-list }; ... }General.VisibilityMode is set to 0 or 2.
Show char-expression;General.VisibilityMode is set to 0 or 2
(char-expression can for example be "*").
Smoother Surface { expression-list } = expression;The list of all the options that control the behavior of mesh commands, as well as the way meshes are displayed in the GUI, is given in Mesh options list.
Five external solvers can be interfaced simultaneously with Gmsh.
If you just want to start a solver from the solver module, with no
further interactions between the solver and Gmsh, just edit the options
relative to one of the five available solvers (e.g.,
Solver.Name0, Solver.Executable0, ...; see Solver options list), and set the corresponding “client-server” option to
zero (e.g., Solver.ClientServer0 = 0). This doesn't require any
modification to be made to the solver.
If you want the solver to interact with Gmsh (for error messages, option
definitions, post-processing, etc.), you need to include
GmshSocket.h in your code and add the appropriate function calls
inside your program. You can then proceed as in the previous case, but
this time you should set the client-server option to 1 (e.g.,
Solver.ClientServer0 = 1), so that Gmsh and the solver can
communicate through a Unix socket. See Solver example, for an
example of how to interface a C++ solver. Bindings for solvers written
in other languages (C, Perl and Python) are available in the source
distribution.
The list of all the solver options is given in Solver options list.
Here is a small example of how to interface a C++ solver with Gmsh. The following listing reproduces the utils/solvers/c++/solver.cpp file from the Gmsh source distribution (C, Perl and Python examples are also available).
// This is a dummy C++ client solver for Gmsh: it does not solve
// anything, but shows how to program your own solver to interact with
// the Gmsh solver module.
//
// To compile this solver, type something like:
//
// g++ solver.cpp -o solver.exe
//
// To run it, merge the contents of the file solver.opt into your
// default Gmsh option file, or launch Gmsh with the command:
//
// gmsh -option solver.opt
//
// You will then see a new button labeled "My C++ solver" in Gmsh's
// solver menu.
#include <math.h>
#include "GmshSocket.h"
typedef enum { send_options, run_code } action;
int main(int argc, char *argv[])
{
action what_to_do = run_code;
char *name = 0, *option = 0, *socket = 0;
// parse command line
int i = 0;
while(i < argc) {
if(argv[i][0] == '-') {
if(!strcmp(argv[i] + 1, "socket")) {
i++;
if(argv[i]) socket = argv[i++];
}
else if(!strcmp(argv[i] + 1, "options")) {
i++;
what_to_do = send_options;
}
else if(!strcmp(argv[i] + 1, "run")) {
i++;
what_to_do = run_code;
if(argv[i]) option = argv[i++];
}
}
else
name = argv[i++];
}
if(!socket) {
printf("No socket specified: running non-interactively...\n");
exit(1);
}
// connect to Gmsh
GmshClient client;
if(client.Connect(socket) < 0){
printf("Unable to connect to Gmsh\n");
exit(1);
}
client.Start();
if(what_to_do == send_options) {
// send the available options for this computation
client.Option(1, "FormulationH");
client.Option(1, "ConvTest");
client.Option(1, "Blablabli");
}
else if(what_to_do == run_code){
// do the computation and merge some views
for(int i = 0; i < 10; i++){
client.Info("Computing curve...");
// fake computation for 500ms:
#if !defined(WIN32) || defined(__CYGWIN__)
usleep(500 * 1000);
#else
Sleep(500);
#endif
client.Info("Done computing curve");
FILE *file = fopen("solver.pos", "w");
if(!file)
client.Error("Unable to open output file");
else {
fprintf(file, "View.Type = 2;\n");
fprintf(file, "View.Axes = 3;\n");
fprintf(file, "Delete View[0];\n");
fprintf(file, "View \"%s\"{\n", option);
for(int j = 0; j < 100; j++)
fprintf(file, "SP(%d,0,0){%g};\n", j,sin(j*i*M_PI/10.));
fprintf(file, "};\n");
fclose(file);
client.MergeFile("solver.pos");
}
}
client.Info("Done!");
}
client.Stop();
client.Disconnect();
}
To define the above solver as the second external solver in Gmsh, you then need to define the following options (either merge them in your Gmsh option file, or use the
-option command-line option—see Command-line options):
Solver.Name1 = "My C++ Solver"; Solver.Executable1 = "./solver.exe"; Solver.InputName1 = "dummy"; Solver.OptionCommand1 = "-options"; Solver.FirstOption1 = "My options"; Solver.FirstButton1 = "Run !"; Solver.FirstButtonCommand1 = "-run %s"; Solver.ClientServer1 = 1; Solver.MergeViews1 = 1; Solver.PopupMessages1 = 1;
Gmsh's post-processing module can handle multiple scalar, vector or tensor datasets along with the geometry and the mesh. The datasets can be given in several formats: in human-readable “parsed” format (these are just part of a standard input script, but are usually put in separate files with a .pos extension), in native MSH files (ASCII or binary files with .msh extensions: see File formats), or in standard third-party formats (like MED: http://www.code-aster.org/outils/med/).
Once loaded into Gmsh, scalar fields can be displayed as iso-value lines
and surfaces or color maps, whereas vector fields can be represented
either by three-dimensional arrows or by displacement maps. (Tensor
fields are currently displayed as Von-Mises effective stresses. To
display other (combinations of) components, use Plugin(Extract):
see Post-processing plugins.)
In Gmsh's jargon, each dataset is called a “view”. Each view is given
a name, and can be manipulated either individually (each view has its
own button in the GUI and can be referred to by its index in a script)
or globally (see the PostProcessing.Link option in
Post-processing options list).
By default, Gmsh treats all post-processing views as three-dimensional plots, i.e., draws the scalar, vector and tensor primitives (points, lines, triangles, tetrahedra, etc.) in 3D space. But Gmsh can also represent each post-processing view containing scalar points as two-dimensional (“X-Y”) plots, either space- or time-oriented:
Although visualization is usually mostly an interactive task, Gmsh exposes all the post-processing commands and options to the user in its scripting language to permit a complete automation of the post-processing process (see e.g., t8.geo, and t9.geo).
The two following sections summarize all available post-processing commands and options. Most options apply to both 2D and 3D plots (colormaps, point/line sizes, interval types, time step selection, etc.), but some are peculiar to 3D (lightning, element selection, etc.) or 2D plots (abscissa labels, etc.). Note that 2D plots can be positioned explicitly inside the graphical window, or be automatically positioned in order to avoid overlaps.
Sample post-processing files in human-readable “parsed” format and in
the native MSH file format are available in the tutorial
directory of Gmsh's distribution (.pos and .msh
files). The “parsed” format is defined in the next section (cf. the
View command); the MSH format is defined in File formats.
Alias View[expression];Note that Alias creates a logical duplicate of the view without
actually duplicating the data in memory. This is very useful when you want
multiple simultaneous renderings of the same large dataset (usually with
different display options), but you cannot afford to store all copies in
memory. If what you really want is multiple physical copies of the data,
just merge the file containing the post-processing view multiple times.
AliasWithOptions View[expression];Combine ElementsByViewName;Combine ElementsFromAllViews | Combine Views;Combine ElementsFromVisibleViews;Combine TimeStepsByViewName | Combine TimeSteps;Combine TimeStepsFromAllViews;Combine TimeStepsFromVisibleViews;Delete View[expression];Delete Empty Views;Background Mesh View[expression];Plugin (string) . Run;Plugin (string) . string = expression | char-expression;Save View[expression] char-expression;View "string" { string < ( expression-list ) > { expression-list }; ... };"string". This
is an easy and quite powerful way to import post-processing data: all
the values are expressions, you can embed datasets directly into
your geometrical descriptions (see, e.g., t4.geo), the data can be
easily generated “on-the-fly” (there is no header containing a
priori information on the size of the dataset). The syntax is also very
permissive, which makes it ideal for testing purposes.
However this “parsed format” is read by Gmsh's script parser, which makes it inefficient if there are many elements in the dataset. Also, there is no connectivity information in parsed views and all the elements are independent (all fields can be discontinuous), so a lot of information can be duplicated. For large datasets, you should thus use the mesh-based post-processing file format described in File formats, or use one of the standard formats like MED.
More explicitly, the syntax for a parsed View is the following
View "string" {
type ( list-of-coords ) { list-of-values }; ...
< TIME { expression-list }; >
< INTERPOLATION_SCHEME { val-coef-matrix } { val-exp-matrix }
< { geo-coef-matrix } { geo-exp-matrix } > ; >
};
where the 47 object types that can be displayed are:
type #list-of-coords #list-of-values
--------------------------------------------------------------------
Scalar point SP 3 1 * nb-time-steps
Vector point VP 3 3 * nb-time-steps
Tensor point TP 3 9 * nb-time-steps
Scalar line SL 6 2 * nb-time-steps
Vector line VL 6 6 * nb-time-steps
Tensor line TL 6 18 * nb-time-steps
Scalar triangle ST 9 3 * nb-time-steps
Vector triangle VT 9 9 * nb-time-steps
Tensor triangle TT 9 27 * nb-time-steps
Scalar quadrangle SQ 12 4 * nb-time-steps
Vector quadrangle VQ 12 12 * nb-time-steps
Tensor quadrangle TQ 12 36 * nb-time-steps
Scalar tetrahedron SS 12 4 * nb-time-steps
Vector tetrahedron VS 12 12 * nb-time-steps
Tensor tetrahedron TS 12 36 * nb-time-steps
Scalar hexahedron SH 24 8 * nb-time-steps
Vector hexahedron VH 24 24 * nb-time-steps
Tensor hexahedron TH 24 72 * nb-time-steps
Scalar prism SI 18 6 * nb-time-steps
Vector prism VI 18 18 * nb-time-steps
Tensor prism TI 18 54 * nb-time-steps
Scalar pyramid SY 15 5 * nb-time-steps
Vector pyramid VY 15 15 * nb-time-steps
Tensor pyramid TY 15 45 * nb-time-steps
2D text T2 3 arbitrary
3D text T3 4 arbitrary
The coordinates are given `by node', i.e.,
(coord1, coord2, coord3) for a point,
(coord1-node1, coord2-node1, coord3-node1,, coord2-node2, coord3-node2) for a line,
(coord1-node1, coord2-node1, coord3-node1,, coord2-node2, coord3-node2,, coord2-node3, coord3-node3) for a triangle,
The ordering of the nodes is given in Node ordering.
The values are given by time step, by node and by component, i.e.:
comp1-node1-time1, comp2-node1-time1, comp3-node1-time1,
comp1-node2-time1, comp2-node2-time1, comp3-node2-time1,
comp1-node3-time1, comp2-node3-time1, comp3-node3-time1,
comp1-node1-time2, comp2-node1-time2, comp3-node1-time2,
comp1-node2-time2, comp2-node2-time2, comp3-node2-time2,
comp1-node3-time2, comp2-node3-time2, comp3-node3-time2,
...
For the 2D text objects, the two first expressions in list-of-coords give the X-Y position of the string in screen coordinates, measured from the top-left corner of the window. If the first (respectively second) expression is negative, the position is measured from the right (respectively bottom) edge of the window. If the value of the first (respectively second) expression is larger than 99999, the string is centered horizontally (respectively vertically). If the third expression is equal to zero, the text is aligned bottom-left and displayed using the default font and size. Otherwise, the third expression is converted into an integer whose eight lower bits give the font size, whose eight next bits select the font (the index corresponds to the position in the font menu in the GUI), and whose eight next bits define the text alignment (0=bottom-left, 1=bottom-center, 2=bottom-right, 3=top-left, 4=top-center, 5=top-right, 6=center-left, 7=center-center, 8=center-right).
For the 3D text objects, the three first expressions in list-of-coords give the XYZ position of the string in model (real world) coordinates. The fourth expression has the same meaning as the third expression in 2D text objects.
For both 2D and 3D text objects, the list-of-values can contain an arbitrary number of char-expressions.
The optional TIME list can contain a list of expressions giving the
value of the time (or any other variable) for which an evolution was saved.
The optional INTERPOLATION_SCHEME lists can contain the
interpolation matrices used for high-order adaptive visualization.
Let us assume that the approximation of the view's value over an element is written as a linear combination of d basis functions f[i], i=0, ..., d-1 (the coefficients being stored in list-of-values). Defining f[i] = Sum(j=0, ..., d-1) F[i][j] p[j], with p[j] = u^P[j][0] v^P[j][1] w^P[j][2] (u, v and w being the coordinates in the element's parameter space), then val-coef-matrix denotes the d x d matrix F and val-exp-matrix denotes the d x 3 matrix P.
In the same way, let us also assume that the coordinates x, y and z of the element are obtained through a geometrical mapping from parameter space as a linear combination of m basis functions g[i], i=0, ..., m-1 (the coefficients being stored in list-of-coords). Defining g[i] = Sum(j=0, ..., m-1) G[i][j] q[j], with q[j] = u^Q[j][0] v^Q[j][1] w^Q[j][2], then val-coef-matrix denotes the m x m matrix G and val-exp-matrix denotes the m x 3 matrix Q.
Here are for example the interpolation matrices for a first order quadrangle:
INTERPOLATION_SCHEME
{
{1/4,-1/4, 1/4,-1/4},
{1/4, 1/4,-1/4,-1/4},
{1/4, 1/4, 1/4, 1/4},
{1/4,-1/4,-1/4, 1/4}
}
{
{0, 0, 0},
{1, 0, 0},
{0, 1, 0},
{1, 1, 0}
};
Post-processing plugins permit to extend the functionality of Gmsh's post-processing module. The difference between regular post-processing options (see Post-processing options list) and post-processing plugins is that regular post-processing options only change the way the data is displayed, while post-processing plugins either create new post-processing views, or modify the data stored in a view (in a destructive, non-reversible way).
Plugins are available in the GUI by right-clicking on a view button (or by clicking on the black arrow next to the view button) and then selecting the `Plugin' submenu.
Here is the list of the plugins that are shipped by default with Gmsh:
Plugin(Annotate)Plugin(Annotate) is executed in-place for list-based datasets or creates a new view for other datasets.
String options:
Text"My Text"
Font"Helvetica"
Align"Left"
X50
Y30
Z0
ThereD0
FontSize14
iView-1
Plugin(Curl)Plugin(Curl) creates one new view.
Numeric options:
iView-1
Plugin(CutGrid)Plugin(CutGrid) creates one new view.
Numeric options:
X00
Y00
Z00
X11
Y10
Z10
X20
Y21
Z20
nPointsU20
nPointsV20
ConnectPoints1
iView-1
Plugin(CutMap)Plugin(CutMap) creates as many views as there are time steps in `iView'.
Numeric options:
A0
dTimeStep-1
dView-1
ExtractVolume0
RecurLevel4
TargetError0
iView-1
Plugin(CutParametric)Plugin(CutParametric) creates one new view.
String options:
X"0 + 1 * Cos(u)"
Y"0 + 1 * Sin(u)"
Z"0"
MinU0
MaxU6.2832
nPointsU360
ConnectPoints0
iView-1
Plugin(CutPlane)Plugin(CutPlane) creates one new view.
Numeric options:
A1
B0
C0
D-0.01
ExtractVolume0
RecurLevel4
TargetError0
iView-1
Plugin(CutSphere)Plugin(CutSphere) creates one new view.
Numeric options:
Xc0
Yc0
Zc0
R0.25
ExtractVolume0
RecurLevel4
iView-1
Plugin(Divergence)Plugin(Divergence) creates one new view.
Numeric options:
iView-1
Plugin(Eigenvalues)Plugin(Eigenvalues) creates three new scalar views.
Numeric options:
iView-1
Plugin(Eigenvectors)Plugin(Eigenvectors) creates three new vector views.
Numeric options:
ScaleByEigenvalues1
iView-1
Plugin(Evaluate)- the usual mathematical functions (Log, Sqrt, Sin, Cos, Fabs, ...) and operators (+, -, *, /, ^);
- the symbols x, y and z, to retrieve the coordinates of the current node;
- the symbols Time and TimeStep, to retrieve the current time and time step values;
- the symbol v, to retrieve the `Component'-th component of the field in `iView' at the `TimeStep'-th time step;
- the symbols v0, v1, v2, ..., v8, to retrieve each component of the field in `iView' at the `TimeStep'-th time step;
- the symbol w, to retrieve the `Component'-th component of the field in `ExternalView' at the `ExternalTimeStep'-th time step. If `ExternalView' and `iView' are based on different spatial grids, or if their data types are different, `ExternalView' is interpolated onto `iView';
- the symbols w0, w1, w2, ..., w8, to retrieve each component of the field in `ExternalView' at the `ExternalTimeStep'-th time step.
If `TimeStep' < 0, the plugin automatically loops over all the time steps in `iView' and evaluates `Expression' for each one. If `ExternalTimeStep' < 0, the plugin uses `TimeStep' instead. If `Component' < 0, the plugin automatically loops over all the components in the view and evaluates `Expression' for each one. If `iView' < 0, the plugin is run on the current view. If `ExternalView' < 0, the plugin uses `iView' instead.
Plugin(Evaluate) is executed in-place.
String options:
Expression"v0*Sin(x)"
Component-1
TimeStep-1
ExternalView-1
ExternalTimeStep-1
iView-1
Plugin(Extract)Plugin(Extract) creates one new view.
String options:
Expression0"Sqrt(v0^2+v1^2+v2^2)"
Expression1""
Expression2""
Expression3""
Expression4""
Expression5""
Expression6""
Expression7""
Expression8""
TimeStep-1
iView-1
Plugin(ExtractElements)Plugin(ExtractElements) creates one new view.
Numeric options:
MinVal0
MaxVal1
TimeStep0
iView-1
Plugin(FieldView)Numeric options:
Component-1
iView-1
iField-1
Plugin(FiniteElement)String options:
Equation"Projection"
Parameter"Sin(x*y)"
Gamma1BC""
Gamma2BC""
Omega1
Gamma10
Gamma1Value0
Gamma20
Gamma2Value0
Plugin(GSHHS)String options:
InFileName"gshhs_c.b"
OutFileName"earth.geo"
Format"gshhs"
Coordinate"cartesian"
iField-1
UTMZone0
UTMEquatorialRadius6.37814e+06
UTMPolarRadius6.35675e+06
radius6.37101e+06
WritePolarSphere1
MinStraitsFactor1
Plugin(Gradient)Plugin(Gradient) creates one new view.
Numeric options:
iView-1
Plugin(HarmonicToTime)Plugin(HarmonicToTime) creates one new view.
Numeric options:
RealPart0
ImaginaryPart1
nSteps20
iView-1
Plugin(HomologyComputation)Plugin(HomologyComputation) creates new views.
String options:
Filename"homology.msh"
PhysicalGroupForDomain10
PhysicalGroupForDomain20
PhysicalGroupForSubdomain10
PhysicalGroupForSubdomain20
ComputeGenerators1
ComputeDualGenerators0
ComputeBettiNumbers0
Plugin(Integrate)Plugin(Integrate) creates one new view.
Numeric options:
iView-1
Plugin(Lambda2)Plugin(Lambda2) creates one new view.
Numeric options:
Eigenvalue2
iView-1
Plugin(LongitudeLatitude)Plugin(LongituteLatitude) is executed in place.
Numeric options:
iView-1
Plugin(MakeSimplex)Plugin(MakeSimplex) is executed in-place.
Numeric options:
iView-1
Plugin(ModulusPhase)Plugin(ModulusPhase) is executed in-place.
Numeric options:
RealPart0
ImaginaryPart1
iView-1
Plugin(Probe)Plugin(Probe) creates one new view.
Numeric options:
X0
Y0
Z0
iView-1
Plugin(Remove)Plugin(Remove) is executed in-place.
Numeric options:
Text2D1
Text3D1
Points0
Lines0
Triangles0
Quadrangles0
Tetrahedra0
Hexahedra0
Prisms0
Pyramids0
Scalar1
Vector1
Tensor1
iView-1
Plugin(Skin)Plugin(Skin) creates one new view.
Numeric options:
iView-1
Plugin(Smooth)Plugin(Smooth) is executed in-place.
Numeric options:
iView-1
Plugin(SphericalRaise)Plugin(SphericalRaise) is executed in-place.
Numeric options:
Xc0
Yc0
Zc0
Raise1
Offset0
TimeStep0
iView-1
Plugin(StreamLines)Plugin(StreamLines) creates one new view. This view contains multi-step vector points if `dView' < 0, or single-step scalar lines if `dView' >= 0.
Numeric options:
X00
Y00
Z00
X11
Y10
Z10
X20
Y21
Z20
nPointsU10
nPointsV1
MaxIter100
DT0.1
TimeStep0
dView-1
iView-1
Plugin(Transform)Plugin(Transform) is executed in-place.
Numeric options:
A111
A120
A130
A210
A221
A230
A310
A320
A331
Tx0
Ty0
Tz0
SwapOrientation0
iView-1
Plugin(Triangulate)Plugin(Triangulate) creates one new view.
Numeric options:
iView-1
Plugin(Warp)Plugin(Warp) is executed in-place.
Numeric options:
Factor1
TimeStep0
SmoothingAngle180
dView-1
iView-1
General post-processing option names have the form
`PostProcessing.string'. Options peculiar to post-processing
views take two forms.
View.string', before any view is loaded;
View[n].string' (n = 0, 1, 2,
...), after the n-th view is loaded.
The list of all post-processing and view options is given in Post-processing options list. See t8.geo, and t9.geo, for some examples.
This chapter describes Gmsh's native “MSH” file format, used to store meshes and associated post-processing datasets. The MSH format exists in two flavors: ASCII and binary. The format has a version number (currently: 2.1) that is independent of Gmsh's main version number.
(Remember that for small post-processing datasets you can also use human-readable “parsed” post-processing views, as described in Post-processing commands. Such “parsed” views do not require an underlying mesh, and can therefore be easier to use in some cases.)
The MSH ASCII file format contains one mandatory section giving
information about the file ($MeshFormat), followed by several
optional sections defining the nodes ($Nodes), elements
($Elements), region names ($PhysicalName) and
post-processing datasets ($NodeData, $ElementData,
$ElementNodeData).
Any section with an unrecognized header is simply ignored: you can thus
add comments in a .msh file by putting them e.g. inside a
$Comments/$EndComments section.
Sections can be repeated in the same file, and post-processing sections can be put into separate files (e.g. one file per time step).
The format is defined as follows:
$MeshFormat
version-number file-type data-size
$EndMeshFormat
$Nodes
number-of-nodes
node-number x-coord y-coord z-coord
...
$EndNodes
$Elements
number-of-elements
elm-number elm-type number-of-tags < tag > ... node-number-list
...
$EndElements
$PhysicalNames
number-of-names
physical-dimension physical-number "physical-name"
...
$EndPhysicalNames
$NodeData
number-of-string-tags
< "string-tag" >
...
number-of-real-tags
< real-tag >
...
number-of-integer-tags
< integer-tag >
...
node-number value ...
...
$EndNodeData
$ElementData
number-of-string-tags
< "string-tag" >
...
number-of-real-tags
< real-tag >
...
number-of-integer-tags
< integer-tag >
...
elm-number value ...
...
$EndElementData
$ElementNodeData
number-of-string-tags
< "string-tag" >
...
number-of-real-tags
< real-tag >
...
number-of-integer-tags
< integer-tag >
...
elm-number number-of-nodes-per-element value ...
...
$ElementEndNodeData
where
12345678910111213141516171819202122232425262728293031NodeData (respectively ElementData) views,
there are ncomp values per node (resp. per element), where
ncomp is the number of field components. For
ElementNodeData views, there are ncomp times
number-of-nodes-per-elements values per element.
Below is a small example (a mesh consisting of two quadrangles with an associated nodal scalar dataset; the comments are not part of the actual file!):
$MeshFormat
2.1 0 8
$EndMeshFormat
$Nodes
6 six mesh nodes:
1 0.0 0.0 0.0 node #1: coordinates (0.0, 0.0, 0.0)
2 1.0 0.0 0.0 node #2: coordinates (1.0, 0.0, 0.0)
3 1.0 1.0 0.0 etc.
4 0.0 1.0 0.0
5 2.0 0.0 0.0
6 2.0 1.0 0.0
$EndNodes
$Elements
2 two elements:
1 3 2 99 2 1 2 3 4 quad #1: type 3, physical 99, elementary 2, nodes 1 2 3 4
2 3 2 99 2 2 5 6 3 quad #2: type 3, physical 99, elementary 2, nodes 2 5 6 3
$EndElements
$NodeData
1 one string tag:
"A scalar view" the name of the view ("A scalar view")
1 one real tag:
0.0 the time value (0.0)
3 three integer tags:
0 the time step (0; time steps always start at 0)
1 1-component (scalar) field
6 six associated nodal values
1 0.0 value associated with node #1 (0.0)
2 0.1 value associated with node #2 (0.1)
3 0.2 etc.
4 0.0
5 0.2
6 0.4
$EndNodeData
The binary file format is similar to the ASCII format described above:
$MeshFormat
version-number file-type data-size
one-binary
$EndMeshFormat
$Nodes
number-of-nodes
nodes-binary
$EndNodes
$Elements
number-of-elements
element-header-binary
elements-binary
element-header-binary
elements-binary
...
$EndElements
[ all other sections are identical to ASCII, except that node-number,
elm-number, number-of-nodes-per-element and values are written in
binary format ]
where
Here is a pseudo C code to write one-binary:
int one = 1;
fwrite(&one, sizeof(int), 1, file);
Here is a pseudo C code to write nodes-binary:
for(i = 0; i < number_of_nodes; i++){
fwrite(&num_i, sizeof(int), 1, file);
double xyz[3] = {node_i_x, node_i_y, node_i_z};
fwrite(&xyz, sizeof(double), 3, file);
}
Here is a pseudo C code to write element-header-binary:
int header[3] = {elm_type, num_elm_follow, num_tags};
fwrite(&header, sizeof(int), 3, file);
Here is a pseudo C code to write elements-binary for triangles with the 3 standard tags (the physical and elementary regions, and the mesh partition):
for(i = 0; i < number_of_triangles; i++){
int data[7] = {num_i, physical, elementary, partition,
node_i_1, node_i_2, node_i_3};
fwrite(data, sizeof(int), 7, file);
}
For all mesh and post-processing file formats, the reference elements are defined as follows.
Line: Line3: Line4:
0----------1 --> u 0-----2----1 0----2----3----1
Triangle: Triangle6: Triangle9/10: Triangle12/15:
v
^ 2
| | \
2 2 2 9 8
|`\ |`\ | \ | \
| `\ | `\ 7 6 10 (14) 7
| `\ 5 `4 | \ | \
| `\ | `\ 8 (9) 5 11 (12) (13) 6
| `\ | `\ | \ | \
0----------1 --> u 0-----3----1 0---3---4---1 0---3---4---5---1
Quadrangle: Quadrangle8: Quadrangle9:
v
^
|
3-----------2 3-----6-----2 3-----6-----2
| | | | | | |
| | | | | | |
| +---- | --> u 7 5 7 8 5
| | | | | |
| | | | | |
0-----------1 0-----4-----1 0-----4-----1
Tetrahedron: Tetrahedron10:
v
.
,/
/
2 2
,/|`\ ,/|`\
,/ | `\ ,/ | `\
,/ '. `\ ,6 '. `5
,/ | `\ ,/ 8 `\
,/ | `\ ,/ | `\
0-----------'.--------1 --> u 0--------4--'.--------1
`\. | ,/ `\. | ,/
`\. | ,/ `\. | ,9
`\. '. ,/ `7. '. ,/
`\. |/ `\. |/
`3 `3
`\.
` w
Hexahedron: Hexahedron20: Hexahedron27:
v
3----------2 3----13----2 3----13----2
|\ ^ |\ |\ |\ |\ |\
| \ | | \ | 15 | 14 |15 24 | 14
| \ | | \ 9 \ 11 \ 9 \ 20 11 \
| 7------+---6 | 7----19+---6 | 7----19+---6
| | +-- |-- | -> u | | | | |22 | 26 | 23|
0---+---\--1 | 0---+-8----1 | 0---+-8----1 |
\ | \ \ | \ 17 \ 18 \ 17 25 \ 18
\ | \ \ | 10 | 12| 10 | 21 12|
\| w \| \| \| \| \|
4----------5 4----16----5 4----16----5
Prism: Prism15: Prism18:
w
^
|
3 3 3
,/|`\ ,/|`\ ,/|`\
,/ | `\ 12 | 13 12 | 13
,/ | `\ ,/ | `\ ,/ | `\
4------+------5 4------14-----5 4------14-----5
| | | | 8 | | 8 |
| ,/|`\ | | | | | ,/|`\ |
| ,/ | `\ | | | | | 15 | 16 |
|,/ | `\| | | | |,/ | `\|
,| | `\ 10 | 11 10-----17-----11
,/ | 0 | `\ | 0 | | 0 |
u | ,/ `\ | v | ,/ `\ | | ,/ `\ |
| ,/ `\ | | ,6 `7 | | ,6 `7 |
|,/ `\| |,/ `\| |,/ `\|
1-------------2 1------9------2 1------9------2
Pyramid: Pyramid13: Pyramid14:
4 4 4
,/|\ ,/|\ ,/|\
,/ .'|\ ,/ .'|\ ,/ .'|\
,/ | | \ ,/ | | \ ,/ | | \
,/ .' | `. ,/ .' | `. ,/ .' | `.
,/ | '. \ ,7 | 12 \ ,7 | 12 \
,/ .' w | \ ,/ .' | \ ,/ .' | \
,/ | ^ | \ ,/ 9 | 11 ,/ 9 | 11
0----------.'--|-3 `. 0--------6-.'----3 `. 0--------6-.'----3 `.
`\ | | `\ \ `\ | `\ \ `\ | `\ \
`\ .' +----`\ - \ -> v `5 .' 10 \ `5 .' 13 10 \
`\ | `\ `\ \ `\ | `\ \ `\ | `\ \
`\.' `\ `\` `\.' `\` `\.' `\`
1----------------2 1--------8-------2 1--------8-------2
`\
u
The nodes of a curved element are numbered in the following order:
The numbering for face and volume internal nodes is recursive, i.e., the numbering follows that of the nodes of an embedded face/volume. The higher order nodes are assumed to be equispaced on the element.
This section describes Gmsh's older native file formats. Future versions of Gmsh will continue to support these formats, but we recommend that you do not use them in new applications.
The MSH file format version 1.0 is Gmsh's old native mesh file format, now superseded by the format described in MSH ASCII file format. It is defined as follows:
$NOD
number-of-nodes
node-number x-coord y-coord z-coord
...
$ENDNOD
$ELM
number-of-elements
elm-number elm-type reg-phys reg-elem number-of-nodes node-number-list
...
$ENDELM
where
12345678910111213141516171819The POS ASCII file is Gmsh's old native post-processing format, now superseded by the format described in MSH ASCII file format. It is defined as follows:
$PostFormat
1.4 file-type data-size
$EndPostFormat
$View
view-name nb-time-steps
nb-scalar-points nb-vector-points nb-tensor-points
nb-scalar-lines nb-vector-lines nb-tensor-lines
nb-scalar-triangles nb-vector-triangles nb-tensor-triangles
nb-scalar-quadrangles nb-vector-quadrangles nb-tensor-quadrangles
nb-scalar-tetrahedra nb-vector-tetrahedra nb-tensor-tetrahedra
nb-scalar-hexahedra nb-vector-hexahedra nb-tensor-hexahedra
nb-scalar-prisms nb-vector-prisms nb-tensor-prisms
nb-scalar-pyramids nb-vector-pyramids nb-tensor-pyramids
nb-scalar-lines2 nb-vector-lines2 nb-tensor-lines2
nb-scalar-triangles2 nb-vector-triangles2 nb-tensor-triangles2
nb-scalar-quadrangles2 nb-vector-quadrangles2 nb-tensor-quadrangles2
nb-scalar-tetrahedra2 nb-vector-tetrahedra2 nb-tensor-tetrahedra2
nb-scalar-hexahedra2 nb-vector-hexahedra2 nb-tensor-hexahedra2
nb-scalar-prisms2 nb-vector-prisms2 nb-tensor-prisms2
nb-scalar-pyramids2 nb-vector-pyramids2 nb-tensor-pyramids2
nb-text2d nb-text2d-chars nb-text3d nb-text3d-chars
time-step-values
< scalar-point-value > ... < vector-point-value > ...
< tensor-point-value > ...
< scalar-line-value > ... < vector-line-value > ...
< tensor-line-value > ...
< scalar-triangle-value > ... < vector-triangle-value > ...
< tensor-triangle-value > ...
< scalar-quadrangle-value > ... < vector-quadrangle-value > ...
< tensor-quadrangle-value > ...
< scalar-tetrahedron-value > ... < vector-tetrahedron-value > ...
< tensor-tetrahedron-value > ...
< scalar-hexahedron-value > ... < vector-hexahedron-value > ...
< tensor-hexahedron-value > ...
< scalar-prism-value > ... < vector-prism-value > ...
< tensor-prism-value > ...
< scalar-pyramid-value > ... < vector-pyramid-value > ...
< tensor-pyramid-value > ...
< scalar-line2-value > ... < vector-line2-value > ...
< tensor-line2-value > ...
< scalar-triangle2-value > ... < vector-triangle2-value > ...
< tensor-triangle2-value > ...
< scalar-quadrangle2-value > ... < vector-quadrangle2-value > ...
< tensor-quadrangle2-value > ...
< scalar-tetrahedron2-value > ... < vector-tetrahedron2-value > ...
< tensor-tetrahedron2-value > ...
< scalar-hexahedron2-value > ... < vector-hexahedron2-value > ...
< tensor-hexahedron2-value > ...
< scalar-prism2-value > ... < vector-prism2-value > ...
< tensor-prism2-value > ...
< scalar-pyramid2-value > ... < vector-pyramid2-value > ...
< tensor-pyramid2-value > ...
< text2d > ... < text2d-chars > ...
< text3d > ... < text3d-chars > ...
$EndView
where
......For example, vector-triangle-value is defined as:
coord1-node1 coord1-node2 coord1-node3
coord2-node1 coord2-node2 coord2-node3
coord3-node1 coord3-node2 coord3-node3
comp1-node1-time1 comp2-node1-time1 comp3-node1-time1
comp1-node2-time1 comp2-node2-time1 comp3-node2-time1
comp1-node3-time1 comp2-node3-time1 comp3-node3-time1
comp1-node1-time2 comp2-node1-time2 comp3-node1-time2
comp1-node2-time2 comp2-node2-time2 comp3-node2-time2
comp1-node3-time2 comp2-node3-time2 comp3-node3-time2
...
The ordering of the nodes is given in Node ordering.
coord1 coord2 style index
where coord1 and coord2 give the X-Y position of the 2D string
in screen coordinates (measured from the top-left corner of the window) and
where index gives the starting index of the string in
text2d-chars. If coord1 (respectively coord2) is negative,
the position is measured from the right (respectively bottom) edge of the
window. If coord1 (respectively coord2) is larger than 99999,
the string is centered horizontally (respectively vertically). If
style is equal to zero, the text is aligned bottom-left and displayed
using the default font and size. Otherwise, style is converted into an
integer whose eight lower bits give the font size, whose eight next bits
select the font (the index corresponds to the position in the font menu in
the GUI), and whose eight next bits define the text alignment
(0=bottom-left, 1=bottom-center, 2=bottom-right, 3=top-left, 4=top-center,
5=top-right, 6=center-left, 7=center-center, 8=center-right).
\0' character.
coord1 coord2 coord3 style index
where coord1, coord2 and coord3 give the XYZ coordinates
of the string in model (real world) coordinates, index gives the
starting index of the string in text3d-chars, and style has the
same meaning as in text2d.
\0' character.
The POS binary file format is the same as the POS ASCII file format described in POS ASCII file format, except that:
Here is a pseudo C code to write a post-processing file in binary format:
int one = 1;
fprintf(file, "$PostFormat\n");
fprintf(file, "%g %d %d\n", 1.4, 1, sizeof(double));
fprintf(file, "$EndPostFormat\n");
fprintf(file, "$View\n");
fprintf(file, "%s %d "
"%d %d %d %d %d %d %d %d %d "
"%d %d %d %d %d %d %d %d %d "
"%d %d %d %d %d %d %d %d %d "
"%d %d %d %d %d %d %d %d %d "
"%d %d %d %d %d %d %d %d %d "
"%d %d %d %d\n",
view-name, nb-time-steps,
nb-scalar-points, nb-vector-points, nb-tensor-points,
nb-scalar-lines, nb-vector-lines, nb-tensor-lines,
nb-scalar-triangles, nb-vector-triangles, nb-tensor-triangles,
nb-scalar-quadrangles, nb-vector-quadrangles, nb-tensor-quadrangles,
nb-scalar-tetrahedra, nb-vector-tetrahedra, nb-tensor-tetrahedra,
nb-scalar-hexahedra, nb-vector-hexahedra, nb-tensor-hexahedra,
nb-scalar-prisms, nb-vector-prisms, nb-tensor-prisms,
nb-scalar-pyramids, nb-vector-pyramids, nb-tensor-pyramids,
nb-scalar-lines2, nb-vector-lines2, nb-tensor-lines2,
nb-scalar-triangles2, nb-vector-triangles2, nb-tensor-triangles2,
nb-scalar-quadrangles2, nb-vector-quadrangles2, nb-tensor-quadrangles2,
nb-scalar-tetrahedra2, nb-vector-tetrahedra2, nb-tensor-tetrahedra2,
nb-scalar-hexahedra2, nb-vector-hexahedra2, nb-tensor-hexahedra2,
nb-scalar-prisms2, nb-vector-prisms2, nb-tensor-prisms2,
nb-scalar-pyramids2, nb-vector-pyramids2, nb-tensor-pyramids2,
nb-text2d, nb-text2d-chars, nb-text3d, nb-text3d-chars);
fwrite(&one, sizeof(int), 1, file);
fwrite(time-step-values, sizeof(double), nb-time-steps, file);
fwrite(all-scalar-point-values, sizeof(double), ..., file);
...
fprintf(file, "\n$EndView\n");
In this pseudo-code, all-scalar-point-values is the array of double precision numbers containing all the scalar-point-value lists, put one after each other in order to form a long array of doubles. The principle is the same for all other kinds of values.
The nine following examples introduce new features gradually, starting with t1.geo. The files corresponding to these examples are available in the tutorial directory of the Gmsh distribution.
To learn how to run Gmsh on your computer, see Running Gmsh on your system. Screencasts that show how to use the GUI are available on http://www.geuz.org/gmsh/screencasts/.
/*********************************************************************
*
* Gmsh tutorial 1
*
* Variables, elementary entities (points, lines, surfaces), physical
* entities (points, lines, surfaces)
*
*********************************************************************/
// The simplest construction in Gmsh's scripting language is the
// `affectation'. The following command defines a new variable `lc':
lc = 0.009;
// This variable can then be used in the definition of Gmsh's simplest
// `elementary entity', a `Point'. A Point is defined by a list of
// four numbers: three coordinates (X, Y and Z), and a characteristic
// length (lc) that sets the target element size at the point:
Point(1) = {0, 0, 0, lc};
// The distribution of the mesh element sizes is then obtained by
// interpolation of these characteristic lengths throughout the
// geometry. Another method to specify characteristic lengths is to
// use a background mesh (see `t7.geo' and `bgmesh.pos').
// We can then define some additional points as well as our first
// curve. Curves are Gmsh's second type of elementery entities, and,
// amongst curves, straight lines are the simplest. A straight line is
// defined by a list of point numbers. In the commands below, for
// example, the line 1 starts at point 1 and ends at point 2:
Point(2) = {.1, 0, 0, lc} ;
Point(3) = {.1, .3, 0, lc} ;
Point(4) = {0, .3, 0, lc} ;
Line(1) = {1,2} ;
Line(2) = {3,2} ;
Line(3) = {3,4} ;
Line(4) = {4,1} ;
// The third elementary entity is the surface. In order to define a
// simple rectangular surface from the four lines defined above, a
// line loop has first to be defined. A line loop is a list of
// connected lines, a sign being associated with each line (depending
// on the orientation of the line):
Line Loop(5) = {4,1,-2,3} ;
// We can then define the surface as a list of line loops (only one
// here, since there are no holes--see `t4.geo'):
Plane Surface(6) = {5} ;
// At this level, Gmsh knows everything to display the rectangular
// surface 6 and to mesh it. An optional step is needed if we want to
// associate specific region numbers to the various elements in the
// mesh (e.g. to the line segments discretizing lines 1 to 4 or to the
// triangles discretizing surface 6). This is achieved by the
// definition of `physical entities'. Physical entities will group
// elements belonging to several elementary entities by giving them a
// common number (a region number), and specifying their orientation.
// We can for example group the points 1 and 2 into the physical
// entity 1:
Physical Point(1) = {1,2} ;
// Consequently, two punctual elements will be saved in the output
// mesh file, both with the region number 1. The mechanism is
// identical for line or surface elements:
MyLine = 99;
Physical Line(MyLine) = {1,2,4} ;
Physical Surface("My fancy surface label") = {6} ;
// All the line elements created during the meshing of lines 1, 2 and
// 4 will be saved in the output mesh file with the region number 99;
// and all the triangular elements resulting from the discretization
// of surface 6 will be given an automatic region number (100,
// associated with the label "My fancy surface label").
// Note that if no physical entities are defined, then all the
// elements in the mesh will be saved "as is", with their default
// orientation.
/*********************************************************************
*
* Gmsh tutorial 2
*
* Includes, geometrical transformations, extruded geometries,
* elementary entities (volumes), physical entities (volumes)
*
*********************************************************************/
// We first include the previous tutorial file, in order to use it as
// a basis for this one:
Include "t1.geo";
// We can then add new points and lines in the same way as we did in
// `t1.geo':
Point(5) = {0, .4, 0, lc};
Line(5) = {4, 5};
// But Gmsh also provides tools to tranform (translate, rotate, etc.)
// elementary entities or copies of elementary entities. For example,
// the point 3 can be moved by 0.05 units to the left with:
Translate {-0.05, 0, 0} { Point{3}; }
// The resulting point can also be duplicated and translated by 0.1
// along the y axis:
tmp[] = Translate {0, 0.1, 0} { Duplicata{ Point{3}; } } ;
// In this case, we assigned the result of the Translate command to a
// list, so that we can retrieve the number of the newly created point
// and use it to create new lines and a new surface:
Line(7) = {3,tmp[0]};
Line(8) = {tmp[0],5};
Line Loop(10) = {5,-8,-7,3};
Plane Surface(11) = {10};
// Of course, these transformation commands not only apply to points,
// but also to lines and surfaces. We can for example translate a copy
// of surface 6 by 0.12 units along the z axis and define some
// additional lines and surfaces with:
h = 0.12;
Translate {0, 0, h} { Duplicata{ Surface{6}; } }
Line(106) = {1,8};
Line(107) = {2,12};
Line(108) = {3,16};
Line(109) = {4,7};
Line Loop(110) = {1,107,-103,-106}; Plane Surface(111) = {110};
Line Loop(112) = {2,107,104,-108}; Plane Surface(113) = {112};
Line Loop(114) = {3,109,-105,-108}; Plane Surface(115) = {114};
Line Loop(116) = {4,106,-102,-109}; Plane Surface(117) = {116};
// Volumes are the fourth type of elementary entities in Gmsh. In the
// same way one defines line loops to build surfaces, one has to
// define surface loops (i.e. `shells') to build volumes. The
// following volume does not have holes and thus consists of a single
// surface loop:
Surface Loop(118) = {117,-6,111,-113,101,115};
Volume(119) = {118};
// Another way to define a volume is by extruding a surface. The
// following command extrudes the surface 11 along the z axis and
// automatically creates a new volume:
Extrude {0, 0, h} { Surface{11}; }
// All these geometrical transformations automatically generate new
// elementary entities. The following command permits to manually
// assign a characteristic length to some of the new points:
Characteristic Length {tmp[0], 2, 12, 3, 16, 6, 22} = lc * 4;
// Note that, if the transformation tools are handy to create complex
// geometries, it is also sometimes useful to generate the `flat'
// geometry, with an explicit list of all elementary entities. This
// can be achieved by selecting the `File->Save as->Gmsh unrolled
// geometry' menu or by typing
//
// > gmsh t2.geo -0
//
// on the command line.
// To save all the tetrahedra discretizing the volumes 119 and 120
// with a common region number, we finally define a physical
// volume:
Physical Volume (1) = {119,120};
/*********************************************************************
*
* Gmsh tutorial 3
*
* Extruded meshes, options
*
*********************************************************************/
// Again, we start by including the first tutorial:
Include "t1.geo";
// As in `t2.geo', we plan to perform an extrusion along the z axis.
// But here, instead of only extruding the geometry, we also want to
// extrude the 2D mesh. This is done with the same `Extrude' command,
// but by specifying element 'Layers' (2 layers in this case, the
// first one with 8 subdivisions and the second one with 2
// subdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of h/2):
h = 0.1;
Extrude {0,0,h} {
Surface{6}; Layers{ {8,2}, {0.5,1} };
}
// The extrusion can also be performed with a rotation instead of a
// trhas tobdivisions, both with a height of