Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > 60f1dc962abad0f3b492991a4fbef9be > files > 1626

vtk-doc-5.4.2-5mdv2010.0.noarch.rpm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>VTK: vtkStripper Class Reference</title>
<link href="doxygen.css" rel="stylesheet" type="text/css">
<link href="tabs.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Generated by Doxygen 1.5.6 -->
<div class="navigation" id="top">
  <div class="tabs">
    <ul>
      <li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
      <li><a href="pages.html"><span>Related&nbsp;Pages</span></a></li>
      <li><a href="namespaces.html"><span>Namespaces</span></a></li>
      <li class="current"><a href="classes.html"><span>Classes</span></a></li>
      <li><a href="files.html"><span>Files</span></a></li>
    </ul>
  </div>
  <div class="tabs">
    <ul>
      <li><a href="classes.html"><span>Alphabetical&nbsp;List</span></a></li>
      <li><a href="annotated.html"><span>Class&nbsp;List</span></a></li>
      <li><a href="hierarchy.html"><span>Class&nbsp;Hierarchy</span></a></li>
      <li><a href="functions.html"><span>Class&nbsp;Members</span></a></li>
    </ul>
  </div>
</div>
<div class="contents">
<h1>vtkStripper Class Reference</h1><!-- doxytag: class="vtkStripper" --><!-- doxytag: inherits="vtkPolyDataAlgorithm" --><code>#include &lt;<a class="el" href="a04461.html">vtkStripper.h</a>&gt;</code>
<p>
<div class="dynheader">
Inheritance diagram for vtkStripper:</div>
<div class="dynsection">
<p><center><img src="a14798.png" border="0" usemap="#a14799" alt="Inheritance graph"></center>
<map name="a14799">
<area shape="rect" href="a01261.html" title="Superclass for algorithms that produce only polydata as output." alt="" coords="5,229,160,256"><area shape="rect" href="a00101.html" title="Superclass for all sources, filters, and sinks in VTK." alt="" coords="33,155,132,181"><area shape="rect" href="a01084.html" title="abstract base class for most VTK objects" alt="" coords="43,80,123,107"><area shape="rect" href="a01085.html" title="abstract base class for most VTK objects" alt="" coords="28,5,137,32"></map>
<center><font size="2">[<a href="graph_legend.html">legend</a>]</font></center></div>
<div class="dynheader">
Collaboration diagram for vtkStripper:</div>
<div class="dynsection">
<p><center><img src="a14800.png" border="0" usemap="#a14801" alt="Collaboration graph"></center>
<map name="a14801">
<area shape="rect" href="a01261.html" title="Superclass for algorithms that produce only polydata as output." alt="" coords="173,499,328,525"><area shape="rect" href="a00101.html" title="Superclass for all sources, filters, and sinks in VTK." alt="" coords="281,381,380,408"><area shape="rect" href="a00472.html" title="Superclass for all pipeline executives in VTK." alt="" coords="477,499,576,525"><area shape="rect" href="a01084.html" title="abstract base class for most VTK objects" alt="" coords="407,173,487,200"><area shape="rect" href="a00895.html" title="Store zero or more vtkInformation instances." alt="" coords="404,264,553,291"><area shape="rect" href="a00872.html" title="Store vtkAlgorithm input/output information." alt="" coords="212,264,321,291"><area shape="rect" href="a01085.html" title="abstract base class for most VTK objects" alt="" coords="164,5,273,32"><area shape="rect" href="a00884.html" title="internal structure for vtkInformation" alt="" coords="5,173,168,200"><area shape="rect" href="a00886.html" title="Superclass for vtkInformation keys." alt="" coords="153,83,284,109"><area shape="rect" href="a01719.html" title="record modification and/or execution time" alt="" coords="308,83,417,109"><area shape="rect" href="a00891.html" title="Key for pointer to pointer." alt="" coords="192,173,373,200"></map>
<center><font size="2">[<a href="graph_legend.html">legend</a>]</font></center></div>

<p>
<a href="a14802.html">List of all members.</a><hr><a name="_details"></a><h2>Detailed Description</h2>
create triangle strips and/or poly-lines 
<p>
<a class="el" href="a01623.html" title="create triangle strips and/or poly-lines">vtkStripper</a> is a filter that generates triangle strips and/or poly-lines from input polygons, triangle strips, and lines. Input polygons are assembled into triangle strips only if they are triangles; other types of polygons are passed through to the output and not stripped. (Use <a class="el" href="a01761.html" title="create triangle polygons from input polygons and triangle strips">vtkTriangleFilter</a> to triangulate non-triangular polygons prior to running this filter if you need to strip all the data.) The filter will pass through (to the output) vertices if they are present in the input polydata.<p>
The ivar MaximumLength can be used to control the maximum allowable triangle strip and poly-line length.<p>
By default, this filter discards any cell data associated with the input. Thus is because the cell structure changes and and the old cell data is no longer valid. When PassCellDataAsFieldData flag is set, the cell data is passed as FieldData to the output using the following rule: 1) for every cell in the output that is not a triangle strip, the cell data is inserted once per cell in the output field data. 2) for every triangle strip cell in the output: ii) 1 tuple is inserted for every point(j|j&gt;=2) in the strip. This is the cell data for the cell formed by (j-2, j-1, j) in the input. The field data order is same as cell data i.e. (verts,line,polys,tsrips).<p>
<dl class="warning" compact><dt><b>Warning:</b></dt><dd>If triangle strips or poly-lines exist in the input data they will be passed through to the output data. This filter will only construct triangle strips if triangle polygons are available; and will only construct poly-lines if lines are available.</dd></dl>
<dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="a01761.html" title="create triangle polygons from input polygons and triangle strips">vtkTriangleFilter</a></dd></dl>
<dl class="user" compact><dt><b>Tests:</b></dt><dd><a class="el" href="c2_vtk_t_15.html#c2_vtk_t_vtkStripper">vtkStripper (Tests)</a> </dd></dl>

<p>Definition at line <a class="el" href="a04461.html#l00061">61</a> of file <a class="el" href="a04461.html">vtkStripper.h</a>.</p>
<table border="0" cellpadding="0" cellspacing="0">
<tr><td></td></tr>
<tr><td colspan="2"><br><h2>Public Types</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">typedef <a class="el" href="a01261.html">vtkPolyDataAlgorithm</a>&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="a01623.html#f93269d11eb73f3d0a3367e7d0b6ff9e">Superclass</a></td></tr>

<tr><td colspan="2"><br><h2>Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual const char *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="a01623.html#2dbdc322b385e8ec2bfd2a8ccfbb4643">GetClassName</a> ()</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual int&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="a01623.html#88076f432ffb58abe964366a1c18dd1b">IsA</a> (const char *type)</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="a01623.html#68e4aebda143d6576872d81decd864d6">PrintSelf</a> (ostream &amp;os, <a class="el" href="a00869.html">vtkIndent</a> indent)</td></tr>

<tr><td colspan="2"><div class="groupHeader"></div></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="a01623.html#691160e384f00d6d0af3af8ce0f4d781">SetMaximumLength</a> (int)</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual int&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="a01623.html#526aaeb5167f434063a37283a7e1f38b">GetMaximumLength</a> ()</td></tr>

<tr><td colspan="2"><div class="groupHeader"></div></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="a01623.html#c6c2f0f8703d87e83c716e17ffe7e396">PassCellDataAsFieldDataOn</a> ()</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="a01623.html#065990dd95567efe50a4ecb5a2b52dce">PassCellDataAsFieldDataOff</a> ()</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="a01623.html#38e89354ea49d2f323249f20ed5ff8eb">SetPassCellDataAsFieldData</a> (int)</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual int&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="a01623.html#58de665d99ddcf6080919b71a1b670b0">GetPassCellDataAsFieldData</a> ()</td></tr>

<tr><td colspan="2"><div class="groupHeader"></div></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="a01623.html#79a43b73755e45beec01a36c4c90fa89">SetPassThroughCellIds</a> (int)</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual int&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="a01623.html#8f7c07c17b6cd9b84b4ea4b95e36ed05">GetPassThroughCellIds</a> ()</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="a01623.html#b89fde11116f89d4679b21d45b1f8072">PassThroughCellIdsOn</a> ()</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="a01623.html#271913f1ea3a8d8a0b03f0e4d8eda658">PassThroughCellIdsOff</a> ()</td></tr>

<tr><td colspan="2"><div class="groupHeader"></div></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="a01623.html#612a29b12750c7d19ffc2430907b534e">SetPassThroughPointIds</a> (int)</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual int&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="a01623.html#39f800719028c753bfee7f3789ed7e0e">GetPassThroughPointIds</a> ()</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="a01623.html#c57af01416d7ef3f0fa7c7c0be912b32">PassThroughPointIdsOn</a> ()</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="a01623.html#8ef20d895dac6633225d890c828e14cc">PassThroughPointIdsOff</a> ()</td></tr>

<tr><td colspan="2"><br><h2>Static Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">static int&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="a01623.html#9fbca8fbbb6b6fbc1ab7a0d7013e1204">IsTypeOf</a> (const char *type)</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">static <a class="el" href="a01623.html">vtkStripper</a> *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="a01623.html#bcbb11ae4b909c58a8fef07f16e41226">SafeDownCast</a> (<a class="el" href="a01084.html">vtkObject</a> *o)</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">static <a class="el" href="a01623.html">vtkStripper</a> *&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="a01623.html#07372b0809f24adfe1b1b9f49b9456a1">New</a> ()</td></tr>

<tr><td colspan="2"><br><h2>Protected Member Functions</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="a01623.html#1af9a7aafd3fb1e9ec2ec7fb97f84503">vtkStripper</a> ()</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="a01623.html#6c80c4e2051673ed4f5eaac8e34eff7c">~vtkStripper</a> ()</td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">int&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="a01623.html#d8ac9b9acf71f91dfe4f97a519756e16">RequestData</a> (<a class="el" href="a00872.html">vtkInformation</a> *, <a class="el" href="a00895.html">vtkInformationVector</a> **, <a class="el" href="a00895.html">vtkInformationVector</a> *)</td></tr>

<tr><td colspan="2"><br><h2>Protected Attributes</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">int&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="a01623.html#eab155d6b9e698f1287af154570d73ba">MaximumLength</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">int&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="a01623.html#15a231e979fe4b0bbb50a37e0aed75ea">PassCellDataAsFieldData</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">int&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="a01623.html#84e5725a0e1c425394b2d405f16c263b">PassThroughCellIds</a></td></tr>

<tr><td class="memItemLeft" nowrap align="right" valign="top">int&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="a01623.html#2e762a485efb58075f21b62531b79a9a">PassThroughPointIds</a></td></tr>

</table>
<hr><h2>Member Typedef Documentation</h2>
<a class="anchor" name="f93269d11eb73f3d0a3367e7d0b6ff9e"></a><!-- doxytag: member="vtkStripper::Superclass" ref="f93269d11eb73f3d0a3367e7d0b6ff9e" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">typedef <a class="el" href="a01261.html">vtkPolyDataAlgorithm</a> <a class="el" href="a01261.html">vtkStripper::Superclass</a>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>

<p>Reimplemented from <a class="el" href="a01261.html#0ef1960e1f3d6980b058ab47b5475b91">vtkPolyDataAlgorithm</a>.</p>

<p>Definition at line <a class="el" href="a04461.html#l00064">64</a> of file <a class="el" href="a04461.html">vtkStripper.h</a>.</p>

</div>
</div><p>
<hr><h2>Constructor &amp; Destructor Documentation</h2>
<a class="anchor" name="1af9a7aafd3fb1e9ec2ec7fb97f84503"></a><!-- doxytag: member="vtkStripper::vtkStripper" ref="1af9a7aafd3fb1e9ec2ec7fb97f84503" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">vtkStripper::vtkStripper           </td>
          <td>(</td>
          <td class="paramname">          </td>
          <td>&nbsp;)&nbsp;</td>
          <td><code> [protected]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>

</div>
</div><p>
<a class="anchor" name="6c80c4e2051673ed4f5eaac8e34eff7c"></a><!-- doxytag: member="vtkStripper::~vtkStripper" ref="6c80c4e2051673ed4f5eaac8e34eff7c" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">vtkStripper::~vtkStripper           </td>
          <td>(</td>
          <td class="paramname">          </td>
          <td>&nbsp;)&nbsp;</td>
          <td><code> [inline, protected]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>

<p>Definition at line <a class="el" href="a04461.html#l00107">107</a> of file <a class="el" href="a04461.html">vtkStripper.h</a>.</p>

</div>
</div><p>
<hr><h2>Member Function Documentation</h2>
<a class="anchor" name="2dbdc322b385e8ec2bfd2a8ccfbb4643"></a><!-- doxytag: member="vtkStripper::GetClassName" ref="2dbdc322b385e8ec2bfd2a8ccfbb4643" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual const char* vtkStripper::GetClassName           </td>
          <td>(</td>
          <td class="paramname">          </td>
          <td>&nbsp;)&nbsp;</td>
          <td><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>

<p>Reimplemented from <a class="el" href="a01261.html#117691a3be177e85a0eb7e54b011c9de">vtkPolyDataAlgorithm</a>.</p>

</div>
</div><p>
<a class="anchor" name="9fbca8fbbb6b6fbc1ab7a0d7013e1204"></a><!-- doxytag: member="vtkStripper::IsTypeOf" ref="9fbca8fbbb6b6fbc1ab7a0d7013e1204" args="(const char *type)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">static int vtkStripper::IsTypeOf           </td>
          <td>(</td>
          <td class="paramtype">const char *&nbsp;</td>
          <td class="paramname"> <em>name</em>          </td>
          <td>&nbsp;)&nbsp;</td>
          <td><code> [static]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
Return 1 if this class type is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeRevisionMacro found in vtkSetGet.h. 
<p>Reimplemented from <a class="el" href="a01261.html#6e4df93069945e2df17a891c6f4cd557">vtkPolyDataAlgorithm</a>.</p>

</div>
</div><p>
<a class="anchor" name="88076f432ffb58abe964366a1c18dd1b"></a><!-- doxytag: member="vtkStripper::IsA" ref="88076f432ffb58abe964366a1c18dd1b" args="(const char *type)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual int vtkStripper::IsA           </td>
          <td>(</td>
          <td class="paramtype">const char *&nbsp;</td>
          <td class="paramname"> <em>name</em>          </td>
          <td>&nbsp;)&nbsp;</td>
          <td><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
Return 1 if this class is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeRevisionMacro found in vtkSetGet.h. 
<p>Reimplemented from <a class="el" href="a01261.html#b0133191c934f596dac2a21fd5a8da20">vtkPolyDataAlgorithm</a>.</p>

</div>
</div><p>
<a class="anchor" name="bcbb11ae4b909c58a8fef07f16e41226"></a><!-- doxytag: member="vtkStripper::SafeDownCast" ref="bcbb11ae4b909c58a8fef07f16e41226" args="(vtkObject *o)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">static <a class="el" href="a01623.html">vtkStripper</a>* vtkStripper::SafeDownCast           </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="a01084.html">vtkObject</a> *&nbsp;</td>
          <td class="paramname"> <em>o</em>          </td>
          <td>&nbsp;)&nbsp;</td>
          <td><code> [static]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>

<p>Reimplemented from <a class="el" href="a01261.html#3a09aba4f394c174457d17e9bc08af04">vtkPolyDataAlgorithm</a>.</p>

</div>
</div><p>
<a class="anchor" name="68e4aebda143d6576872d81decd864d6"></a><!-- doxytag: member="vtkStripper::PrintSelf" ref="68e4aebda143d6576872d81decd864d6" args="(ostream &amp;os, vtkIndent indent)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">void vtkStripper::PrintSelf           </td>
          <td>(</td>
          <td class="paramtype">ostream &amp;&nbsp;</td>
          <td class="paramname"> <em>os</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="a00869.html">vtkIndent</a>&nbsp;</td>
          <td class="paramname"> <em>indent</em></td><td>&nbsp;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
Methods invoked by print to print information about the object including superclasses. Typically not called by the user (use <a class="el" href="a01085.html#edadf6378465fd81c2592ef64262e2a5">Print()</a> instead) but used in the hierarchical print process to combine the output of several classes. 
<p>Reimplemented from <a class="el" href="a01261.html#e6d59a63261b0c56f8f473984ae0e1b6">vtkPolyDataAlgorithm</a>.</p>

</div>
</div><p>
<a class="anchor" name="07372b0809f24adfe1b1b9f49b9456a1"></a><!-- doxytag: member="vtkStripper::New" ref="07372b0809f24adfe1b1b9f49b9456a1" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">static <a class="el" href="a01623.html">vtkStripper</a>* vtkStripper::New           </td>
          <td>(</td>
          <td class="paramname">          </td>
          <td>&nbsp;)&nbsp;</td>
          <td><code> [static]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
Construct object with MaximumLength set to 1000. 
<p>Reimplemented from <a class="el" href="a01261.html#cf785ac526132296ff652c636f713b5e">vtkPolyDataAlgorithm</a>.</p>

</div>
</div><p>
<a class="anchor" name="691160e384f00d6d0af3af8ce0f4d781"></a><!-- doxytag: member="vtkStripper::SetMaximumLength" ref="691160e384f00d6d0af3af8ce0f4d781" args="(int)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual void vtkStripper::SetMaximumLength           </td>
          <td>(</td>
          <td class="paramtype">int&nbsp;</td>
          <td class="paramname">          </td>
          <td>&nbsp;)&nbsp;</td>
          <td><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
Specify the maximum number of triangles in a triangle strip, and/or the maximum number of lines in a poly-line. 
</div>
</div><p>
<a class="anchor" name="526aaeb5167f434063a37283a7e1f38b"></a><!-- doxytag: member="vtkStripper::GetMaximumLength" ref="526aaeb5167f434063a37283a7e1f38b" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual int vtkStripper::GetMaximumLength           </td>
          <td>(</td>
          <td class="paramname">          </td>
          <td>&nbsp;)&nbsp;</td>
          <td><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
Specify the maximum number of triangles in a triangle strip, and/or the maximum number of lines in a poly-line. 
</div>
</div><p>
<a class="anchor" name="c6c2f0f8703d87e83c716e17ffe7e396"></a><!-- doxytag: member="vtkStripper::PassCellDataAsFieldDataOn" ref="c6c2f0f8703d87e83c716e17ffe7e396" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual void vtkStripper::PassCellDataAsFieldDataOn           </td>
          <td>(</td>
          <td class="paramname">          </td>
          <td>&nbsp;)&nbsp;</td>
          <td><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
Enable/Disable passing of the CellData in the input to the output as FieldData. Note the field data is tranformed. 
</div>
</div><p>
<a class="anchor" name="065990dd95567efe50a4ecb5a2b52dce"></a><!-- doxytag: member="vtkStripper::PassCellDataAsFieldDataOff" ref="065990dd95567efe50a4ecb5a2b52dce" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual void vtkStripper::PassCellDataAsFieldDataOff           </td>
          <td>(</td>
          <td class="paramname">          </td>
          <td>&nbsp;)&nbsp;</td>
          <td><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
Enable/Disable passing of the CellData in the input to the output as FieldData. Note the field data is tranformed. 
</div>
</div><p>
<a class="anchor" name="38e89354ea49d2f323249f20ed5ff8eb"></a><!-- doxytag: member="vtkStripper::SetPassCellDataAsFieldData" ref="38e89354ea49d2f323249f20ed5ff8eb" args="(int)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual void vtkStripper::SetPassCellDataAsFieldData           </td>
          <td>(</td>
          <td class="paramtype">int&nbsp;</td>
          <td class="paramname">          </td>
          <td>&nbsp;)&nbsp;</td>
          <td><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
Enable/Disable passing of the CellData in the input to the output as FieldData. Note the field data is tranformed. 
</div>
</div><p>
<a class="anchor" name="58de665d99ddcf6080919b71a1b670b0"></a><!-- doxytag: member="vtkStripper::GetPassCellDataAsFieldData" ref="58de665d99ddcf6080919b71a1b670b0" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual int vtkStripper::GetPassCellDataAsFieldData           </td>
          <td>(</td>
          <td class="paramname">          </td>
          <td>&nbsp;)&nbsp;</td>
          <td><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
Enable/Disable passing of the CellData in the input to the output as FieldData. Note the field data is tranformed. 
</div>
</div><p>
<a class="anchor" name="79a43b73755e45beec01a36c4c90fa89"></a><!-- doxytag: member="vtkStripper::SetPassThroughCellIds" ref="79a43b73755e45beec01a36c4c90fa89" args="(int)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual void vtkStripper::SetPassThroughCellIds           </td>
          <td>(</td>
          <td class="paramtype">int&nbsp;</td>
          <td class="paramname">          </td>
          <td>&nbsp;)&nbsp;</td>
          <td><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
If on, the output polygonal dataset will have a celldata array that holds the cell index of the original 3D cell that produced each output cell. This is useful for picking. The default is off to conserve memory. 
</div>
</div><p>
<a class="anchor" name="8f7c07c17b6cd9b84b4ea4b95e36ed05"></a><!-- doxytag: member="vtkStripper::GetPassThroughCellIds" ref="8f7c07c17b6cd9b84b4ea4b95e36ed05" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual int vtkStripper::GetPassThroughCellIds           </td>
          <td>(</td>
          <td class="paramname">          </td>
          <td>&nbsp;)&nbsp;</td>
          <td><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
If on, the output polygonal dataset will have a celldata array that holds the cell index of the original 3D cell that produced each output cell. This is useful for picking. The default is off to conserve memory. 
</div>
</div><p>
<a class="anchor" name="b89fde11116f89d4679b21d45b1f8072"></a><!-- doxytag: member="vtkStripper::PassThroughCellIdsOn" ref="b89fde11116f89d4679b21d45b1f8072" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual void vtkStripper::PassThroughCellIdsOn           </td>
          <td>(</td>
          <td class="paramname">          </td>
          <td>&nbsp;)&nbsp;</td>
          <td><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
If on, the output polygonal dataset will have a celldata array that holds the cell index of the original 3D cell that produced each output cell. This is useful for picking. The default is off to conserve memory. 
</div>
</div><p>
<a class="anchor" name="271913f1ea3a8d8a0b03f0e4d8eda658"></a><!-- doxytag: member="vtkStripper::PassThroughCellIdsOff" ref="271913f1ea3a8d8a0b03f0e4d8eda658" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual void vtkStripper::PassThroughCellIdsOff           </td>
          <td>(</td>
          <td class="paramname">          </td>
          <td>&nbsp;)&nbsp;</td>
          <td><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
If on, the output polygonal dataset will have a celldata array that holds the cell index of the original 3D cell that produced each output cell. This is useful for picking. The default is off to conserve memory. 
</div>
</div><p>
<a class="anchor" name="612a29b12750c7d19ffc2430907b534e"></a><!-- doxytag: member="vtkStripper::SetPassThroughPointIds" ref="612a29b12750c7d19ffc2430907b534e" args="(int)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual void vtkStripper::SetPassThroughPointIds           </td>
          <td>(</td>
          <td class="paramtype">int&nbsp;</td>
          <td class="paramname">          </td>
          <td>&nbsp;)&nbsp;</td>
          <td><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
If on, the output polygonal dataset will have a pointdata array that holds the point index of the original vertex that produced each output vertex. This is useful for picking. The default is off to conserve memory. 
</div>
</div><p>
<a class="anchor" name="39f800719028c753bfee7f3789ed7e0e"></a><!-- doxytag: member="vtkStripper::GetPassThroughPointIds" ref="39f800719028c753bfee7f3789ed7e0e" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual int vtkStripper::GetPassThroughPointIds           </td>
          <td>(</td>
          <td class="paramname">          </td>
          <td>&nbsp;)&nbsp;</td>
          <td><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
If on, the output polygonal dataset will have a pointdata array that holds the point index of the original vertex that produced each output vertex. This is useful for picking. The default is off to conserve memory. 
</div>
</div><p>
<a class="anchor" name="c57af01416d7ef3f0fa7c7c0be912b32"></a><!-- doxytag: member="vtkStripper::PassThroughPointIdsOn" ref="c57af01416d7ef3f0fa7c7c0be912b32" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual void vtkStripper::PassThroughPointIdsOn           </td>
          <td>(</td>
          <td class="paramname">          </td>
          <td>&nbsp;)&nbsp;</td>
          <td><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
If on, the output polygonal dataset will have a pointdata array that holds the point index of the original vertex that produced each output vertex. This is useful for picking. The default is off to conserve memory. 
</div>
</div><p>
<a class="anchor" name="8ef20d895dac6633225d890c828e14cc"></a><!-- doxytag: member="vtkStripper::PassThroughPointIdsOff" ref="8ef20d895dac6633225d890c828e14cc" args="()" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">virtual void vtkStripper::PassThroughPointIdsOff           </td>
          <td>(</td>
          <td class="paramname">          </td>
          <td>&nbsp;)&nbsp;</td>
          <td><code> [virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
If on, the output polygonal dataset will have a pointdata array that holds the point index of the original vertex that produced each output vertex. This is useful for picking. The default is off to conserve memory. 
</div>
</div><p>
<a class="anchor" name="d8ac9b9acf71f91dfe4f97a519756e16"></a><!-- doxytag: member="vtkStripper::RequestData" ref="d8ac9b9acf71f91dfe4f97a519756e16" args="(vtkInformation *, vtkInformationVector **, vtkInformationVector *)" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int vtkStripper::RequestData           </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="a00872.html">vtkInformation</a> *&nbsp;</td>
          <td class="paramname"> <em>request</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="a00895.html">vtkInformationVector</a> **&nbsp;</td>
          <td class="paramname"> <em>inputVector</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype"><a class="el" href="a00895.html">vtkInformationVector</a> *&nbsp;</td>
          <td class="paramname"> <em>outputVector</em></td><td>&nbsp;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td><td><code> [protected, virtual]</code></td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>
This is called by the superclass. This is the method you should override. 
<p>Reimplemented from <a class="el" href="a01261.html#6b5a43ab1f9bbcb368c7dc83e4afe068">vtkPolyDataAlgorithm</a>.</p>

</div>
</div><p>
<hr><h2>Member Data Documentation</h2>
<a class="anchor" name="eab155d6b9e698f1287af154570d73ba"></a><!-- doxytag: member="vtkStripper::MaximumLength" ref="eab155d6b9e698f1287af154570d73ba" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int <a class="el" href="a01623.html#eab155d6b9e698f1287af154570d73ba">vtkStripper::MaximumLength</a><code> [protected]</code>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>

<p>Definition at line <a class="el" href="a04461.html#l00112">112</a> of file <a class="el" href="a04461.html">vtkStripper.h</a>.</p>

</div>
</div><p>
<a class="anchor" name="15a231e979fe4b0bbb50a37e0aed75ea"></a><!-- doxytag: member="vtkStripper::PassCellDataAsFieldData" ref="15a231e979fe4b0bbb50a37e0aed75ea" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int <a class="el" href="a01623.html#15a231e979fe4b0bbb50a37e0aed75ea">vtkStripper::PassCellDataAsFieldData</a><code> [protected]</code>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>

<p>Definition at line <a class="el" href="a04461.html#l00113">113</a> of file <a class="el" href="a04461.html">vtkStripper.h</a>.</p>

</div>
</div><p>
<a class="anchor" name="84e5725a0e1c425394b2d405f16c263b"></a><!-- doxytag: member="vtkStripper::PassThroughCellIds" ref="84e5725a0e1c425394b2d405f16c263b" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int <a class="el" href="a01623.html#84e5725a0e1c425394b2d405f16c263b">vtkStripper::PassThroughCellIds</a><code> [protected]</code>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>

<p>Definition at line <a class="el" href="a04461.html#l00114">114</a> of file <a class="el" href="a04461.html">vtkStripper.h</a>.</p>

</div>
</div><p>
<a class="anchor" name="2e762a485efb58075f21b62531b79a9a"></a><!-- doxytag: member="vtkStripper::PassThroughPointIds" ref="2e762a485efb58075f21b62531b79a9a" args="" -->
<div class="memitem">
<div class="memproto">
      <table class="memname">
        <tr>
          <td class="memname">int <a class="el" href="a01623.html#2e762a485efb58075f21b62531b79a9a">vtkStripper::PassThroughPointIds</a><code> [protected]</code>          </td>
        </tr>
      </table>
</div>
<div class="memdoc">

<p>

<p>Definition at line <a class="el" href="a04461.html#l00115">115</a> of file <a class="el" href="a04461.html">vtkStripper.h</a>.</p>

</div>
</div><p>
<hr>The documentation for this class was generated from the following file:<ul>
<li>dox/Graphics/<a class="el" href="a04461.html">vtkStripper.h</a></ul>
</div>
<hr size="1"><address style="text-align: right;"><small>Generated on Wed Jun 3 19:36:55 2009 for VTK by&nbsp;
<a href="http://www.doxygen.org/index.html">
<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.6 </small></address>
</body>
</html>