Difference between revisions of "Extrude"

From BRL-CAD
m (fixed missing mged> prompt)
(5 intermediate revisions by the same user not shown)
Line 4: Line 4:
 
  |[[Image:extrude_example.png|resize|256px|Example extrude object created with "in" command]]
 
  |[[Image:extrude_example.png|resize|256px|Example extrude object created with "in" command]]
 
  |}
 
  |}
s
+
 
s
+
 
s
+
 
s
+
 
s
+
 
s
+
The "extrude" command is only working for "boxes" (also called arbs).
s
+
 
s
+
You can create an "extrude" object through the normal object creation facilities.
s
+
You can either run the "in" command or use the Create menu.  The 'in' 
s
+
command will interactively prompt you for parameters.
s
+
 
s
+
Here is an example of a sketch creation followed by an extrude  object
s
+
creation based on it.
s
+
 
s
+
Sketch creation:
s
+
<pre>
 +
mged> put sketch_example sketch V {0 0 0} A {1 0 0} B {0 1 0} VL { {0 0} {1 0} {1 1} {0 1} } SL {
 +
  {line S 0 E 1} {line S 1 E 2} {line S 2 E 3} {line S 3 E 0} }
 +
 
 +
</pre>
 +
 
 +
followed by an Extrude creation:
 +
 
 +
<pre>
 +
mged> in
 +
Enter name of solid: extrude_example
 +
Enter solid type: extrude
 +
Enter X, Y, Z of vertex: 0 0 0
 +
Enter X, Y, Z of H: 0 0 1
 +
Enter X, Y, Z of A: 1 0 0
 +
Enter X, Y, Z of B: 0 1 0
 +
Enter name of sketch: sketch_example
 +
</pre>

Revision as of 18:37, 5 July 2014


Example extrude object created with "in" command



The "extrude" command is only working for "boxes" (also called arbs).

You can create an "extrude" object through the normal object creation facilities. You can either run the "in" command or use the Create menu. The 'in' command will interactively prompt you for parameters.

Here is an example of a sketch creation followed by an extrude object creation based on it.

Sketch creation:

mged> put sketch_example sketch V {0 0 0} A {1 0 0} B {0 1 0} VL { {0 0} {1 0} {1 1} {0 1} } SL {
   {line S 0 E 1} {line S 1 E 2} {line S 2 E 3} {line S 3 E 0} }

followed by an Extrude creation:

mged> in
Enter name of solid: extrude_example
Enter solid type: extrude
Enter X, Y, Z of vertex: 0 0 0
Enter X, Y, Z of H: 0 0 1
Enter X, Y, Z of A: 1 0 0
Enter X, Y, Z of B: 0 1 0
Enter name of sketch: sketch_example