<div dir="ltr">The points and cells are generated in the for loops.<br><br></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Tue, Jul 9, 2013 at 2:43 PM, rahul indoria <span dir="ltr">&lt;<a href="mailto:rahulindoria5@gmail.com" target="_blank">rahulindoria5@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Hi,<div>   Can you explain me some portion of the code of this example (<a href="http://www.vtk.org/Wiki/VTK/Examples/Cxx/Visualization/CurvedReformation" target="_blank">http://www.vtk.org/Wiki/VTK/Examples/Cxx/Visualization/CurvedReformation</a>)?</div>

<div><br></div><div>i need to ask the line by line documentation of this function, how these points and surface is formed?</div><div><br></div><div><br></div><div><pre style="vertical-align:top;line-height:1.2em;font-size:10px;margin-bottom:0px;margin-top:0px;border:0px none white;padding:0px;background-image:none">
vtkSmartPointer<span style="color:rgb(0,0,128)">&lt;</span>vtkPolyData<span style="color:rgb(0,0,128)">&gt;</span> SweepLine <span style="color:rgb(0,128,0)">(</span>vtkPolyData <span style="color:rgb(0,0,64)">*</span>line,
                                        <span style="color:rgb(0,0,255)">double</span> direction<span style="color:rgb(0,128,0)">[</span><span style="color:rgb(0,0,221)">3</span><span style="color:rgb(0,128,0)">]</span>,
                                        <span style="color:rgb(0,0,255)">double</span> distance,
                                        <span style="color:rgb(0,0,255)">unsigned</span> <span style="color:rgb(0,0,255)">int</span> cols<span style="color:rgb(0,128,0)">)</span></pre><pre style="vertical-align:top;line-height:1.2em;font-size:10px;margin-bottom:0px;margin-top:0px;border:0px none white;padding:0px;background-image:none">
<span style="color:rgb(0,128,0)">{</span></pre><pre style="vertical-align:top;line-height:1.2em;font-size:10px;margin-bottom:0px;margin-top:0px;border:0px none white;padding:0px;background-image:none"><span style="font-size:10px;line-height:1.2em;font-family:arial;color:rgb(0,0,255)">unsigned</span><span style="font-size:10px;line-height:1.2em;font-family:arial"> </span><span style="font-size:10px;line-height:1.2em;font-family:arial;color:rgb(0,0,255)">int</span><span style="font-size:10px;line-height:1.2em;font-family:arial"> rows </span><span style="font-size:10px;line-height:1.2em;font-family:arial;color:rgb(0,0,128)">=</span><span style="font-size:10px;line-height:1.2em;font-family:arial"> line</span><span style="font-size:10px;line-height:1.2em;font-family:arial;color:rgb(0,0,64)">-</span><span style="font-size:10px;line-height:1.2em;font-family:arial;color:rgb(0,0,128)">&gt;</span><span style="font-size:10px;line-height:1.2em;font-family:arial">GetNumberOfPoints</span><span style="font-size:10px;line-height:1.2em;font-family:arial;color:rgb(0,128,0)">(</span><span style="font-size:10px;line-height:1.2em;font-family:arial;color:rgb(0,128,0)">)</span><span style="font-size:10px;line-height:1.2em;font-family:arial;color:rgb(0,128,128)">;</span><br>

</pre></div><div><pre style="vertical-align:top;line-height:1.2em;font-size:10px;margin-bottom:0px;margin-top:0px;border:0px none white;padding:0px;background-image:none">  <span style="color:rgb(0,0,255)">double</span> spacing <span style="color:rgb(0,0,128)">=</span> distance <span style="color:rgb(0,0,64)">/</span> cols<span style="color:rgb(0,128,128)">;</span>
  vtkSmartPointer<span style="color:rgb(0,0,128)">&lt;</span>vtkPolyData<span style="color:rgb(0,0,128)">&gt;</span> surface <span style="color:rgb(0,0,128)">=</span>
    vtkSmartPointer<span style="color:rgb(0,0,128)">&lt;</span>vtkPolyData<span style="color:rgb(0,0,128)">&gt;</span><span style="color:rgb(0,128,128)">::</span><span style="color:rgb(0,119,136)">New</span><span style="color:rgb(0,128,0)">(</span><span style="color:rgb(0,128,0)">)</span><span style="color:rgb(0,128,128)">;</span>
 
  <span style="color:rgb(102,102,102)">// Generate the points</span>
  cols<span style="color:rgb(0,0,64)">++</span><span style="color:rgb(0,128,128)">; // why this statement ?</span>
  <span style="color:rgb(0,0,255)">unsigned</span> <span style="color:rgb(0,0,255)">int</span> numberOfPoints <span style="color:rgb(0,0,128)">=</span> rows <span style="color:rgb(0,0,64)">*</span> cols<span style="color:rgb(0,128,128)">; // how these number points are generated</span>
  <span style="color:rgb(0,0,255)">unsigned</span> <span style="color:rgb(0,0,255)">int</span> numberOfPolys <span style="color:rgb(0,0,128)">=</span> <span style="color:rgb(0,128,0)">(</span>rows <span style="color:rgb(0,0,64)">-</span> <span style="color:rgb(0,0,221)">1</span><span style="color:rgb(0,128,0)">)</span> <span style="color:rgb(0,0,64)">*</span> <span style="color:rgb(0,128,0)">(</span>cols <span style="color:rgb(0,0,64)">-</span> <span style="color:rgb(0,0,221)">1</span><span style="color:rgb(0,128,0)">)</span><span style="color:rgb(0,128,128)">; // what is this???</span></pre>

<pre style="vertical-align:top;line-height:1.2em;font-size:10px;margin-bottom:0px;margin-top:0px;border:0px none white;padding:0px;background-image:none"><br></pre><pre style="vertical-align:top;line-height:1.2em;font-size:10px;margin-bottom:0px;margin-top:0px;border:0px none white;padding:0px;background-image:none">
<pre style="padding:0px;border:0px none white;line-height:1.2em;font-size:10px;margin-top:0px;margin-bottom:0px;background-image:none;vertical-align:top">vtkSmartPointer<span style="color:rgb(0,0,128)">&lt;</span>vtkPoints<span style="color:rgb(0,0,128)">&gt;</span> points <span style="color:rgb(0,0,128)">=</span>
    vtkSmartPointer<span style="color:rgb(0,0,128)">&lt;</span>vtkPoints<span style="color:rgb(0,0,128)">&gt;</span><span style="color:rgb(0,128,128)">::</span><span style="color:rgb(0,119,136)">New</span><span style="color:rgb(0,128,0)">(</span><span style="color:rgb(0,128,0)">)</span><span style="color:rgb(0,128,128)">;</span>
  points<span style="color:rgb(0,0,64)">-</span><span style="color:rgb(0,0,128)">&gt;</span>Allocate<span style="color:rgb(0,128,0)">(</span>numberOfPoints<span style="color:rgb(0,128,0)">)</span><span style="color:rgb(0,128,128)">;</span>
  vtkSmartPointer<span style="color:rgb(0,0,128)">&lt;</span>vtkCellArray<span style="color:rgb(0,0,128)">&gt;</span> polys <span style="color:rgb(0,0,128)">=</span>
    vtkSmartPointer<span style="color:rgb(0,0,128)">&lt;</span>vtkCellArray<span style="color:rgb(0,0,128)">&gt;</span><span style="color:rgb(0,128,128)">::</span><span style="color:rgb(0,119,136)">New</span><span style="color:rgb(0,128,0)">(</span><span style="color:rgb(0,128,0)">)</span><span style="color:rgb(0,128,128)">;</span>
  polys<span style="color:rgb(0,0,64)">-</span><span style="color:rgb(0,0,128)">&gt;</span>Allocate<span style="color:rgb(0,128,0)">(</span>numberOfPolys<span style="color:rgb(0,0,64)">*</span><span style="color:rgb(0,0,221)">4</span><span style="color:rgb(0,128,0)">)</span><span style="color:rgb(0,128,128)">;</span>
 
  <span style="color:rgb(0,0,255)">double</span> x<span style="color:rgb(0,128,0)">[</span><span style="color:rgb(0,0,221)">3</span><span style="color:rgb(0,128,0)">]</span><span style="color:rgb(0,128,128)">;</span>
  <span style="color:rgb(0,0,255)">unsigned</span> <span style="color:rgb(0,0,255)">int</span> cnt <span style="color:rgb(0,0,128)">=</span> <span style="color:rgb(0,0,221)">0</span><span style="color:rgb(0,128,128)">;</span>
  <span style="color:rgb(0,0,255)">for</span> <span style="color:rgb(0,128,0)">(</span><span style="color:rgb(0,0,255)">unsigned</span> <span style="color:rgb(0,0,255)">int</span> row <span style="color:rgb(0,0,128)">=</span> <span style="color:rgb(0,0,221)">0</span><span style="color:rgb(0,128,128)">;</span> row <span style="color:rgb(0,0,128)">&lt;</span> rows<span style="color:rgb(0,128,128)">;</span> row<span style="color:rgb(0,0,64)">++</span><span style="color:rgb(0,128,0)">)</span>
    <span style="color:rgb(0,128,0)">{</span>
      <span style="color:rgb(0,0,255)">for</span> <span style="color:rgb(0,128,0)">(</span><span style="color:rgb(0,0,255)">unsigned</span> <span style="color:rgb(0,0,255)">int</span> col <span style="color:rgb(0,0,128)">=</span> <span style="color:rgb(0,0,221)">0</span><span style="color:rgb(0,128,128)">;</span> col <span style="color:rgb(0,0,128)">&lt;</span> cols<span style="color:rgb(0,128,128)">;</span> col<span style="color:rgb(0,0,64)">++</span><span style="color:rgb(0,128,0)">)</span>
        <span style="color:rgb(0,128,0)">{</span>
          <span style="color:rgb(0,0,255)">double</span> p<span style="color:rgb(0,128,0)">[</span><span style="color:rgb(0,0,221)">3</span><span style="color:rgb(0,128,0)">]</span><span style="color:rgb(0,128,128)">;</span>
          line<span style="color:rgb(0,0,64)">-</span><span style="color:rgb(0,0,128)">&gt;</span>GetPoint<span style="color:rgb(0,128,0)">(</span>row, p<span style="color:rgb(0,128,0)">)</span><span style="color:rgb(0,128,128)">;</span>
          x<span style="color:rgb(0,128,0)">[</span><span style="color:rgb(0,0,221)">0</span><span style="color:rgb(0,128,0)">]</span> <span style="color:rgb(0,0,128)">=</span> p<span style="color:rgb(0,128,0)">[</span><span style="color:rgb(0,0,221)">0</span><span style="color:rgb(0,128,0)">]</span> <span style="color:rgb(0,0,64)">+</span> direction<span style="color:rgb(0,128,0)">[</span><span style="color:rgb(0,0,221)">0</span><span style="color:rgb(0,128,0)">]</span> <span style="color:rgb(0,0,64)">*</span> col <span style="color:rgb(0,0,64)">*</span> spacing<span style="color:rgb(0,128,128)">;</span>
          x<span style="color:rgb(0,128,0)">[</span><span style="color:rgb(0,0,221)">1</span><span style="color:rgb(0,128,0)">]</span> <span style="color:rgb(0,0,128)">=</span> p<span style="color:rgb(0,128,0)">[</span><span style="color:rgb(0,0,221)">1</span><span style="color:rgb(0,128,0)">]</span> <span style="color:rgb(0,0,64)">+</span> direction<span style="color:rgb(0,128,0)">[</span><span style="color:rgb(0,0,221)">1</span><span style="color:rgb(0,128,0)">]</span> <span style="color:rgb(0,0,64)">*</span> col <span style="color:rgb(0,0,64)">*</span> spacing<span style="color:rgb(0,128,128)">;</span>
          x<span style="color:rgb(0,128,0)">[</span><span style="color:rgb(0,0,221)">2</span><span style="color:rgb(0,128,0)">]</span> <span style="color:rgb(0,0,128)">=</span> p<span style="color:rgb(0,128,0)">[</span><span style="color:rgb(0,0,221)">2</span><span style="color:rgb(0,128,0)">]</span> <span style="color:rgb(0,0,64)">+</span> direction<span style="color:rgb(0,128,0)">[</span><span style="color:rgb(0,0,221)">2</span><span style="color:rgb(0,128,0)">]</span> <span style="color:rgb(0,0,64)">*</span> col <span style="color:rgb(0,0,64)">*</span> spacing<span style="color:rgb(0,128,128)">;</span>
          points<span style="color:rgb(0,0,64)">-</span><span style="color:rgb(0,0,128)">&gt;</span>InsertPoint<span style="color:rgb(0,128,0)">(</span>cnt<span style="color:rgb(0,0,64)">++</span>, x<span style="color:rgb(0,128,0)">)</span><span style="color:rgb(0,128,128)">;</span>
        <span style="color:rgb(0,128,0)">}</span>
    <span style="color:rgb(0,128,0)">}</span>
  <span style="color:rgb(102,102,102)">// Generate the quads</span>
  vtkIdType pts<span style="color:rgb(0,128,0)">[</span><span style="color:rgb(0,0,221)">4</span><span style="color:rgb(0,128,0)">]</span><span style="color:rgb(0,128,128)">;</span>
  <span style="color:rgb(0,0,255)">for</span> <span style="color:rgb(0,128,0)">(</span><span style="color:rgb(0,0,255)">unsigned</span> <span style="color:rgb(0,0,255)">int</span> row <span style="color:rgb(0,0,128)">=</span> <span style="color:rgb(0,0,221)">0</span><span style="color:rgb(0,128,128)">;</span> row <span style="color:rgb(0,0,128)">&lt;</span> rows <span style="color:rgb(0,0,64)">-</span> <span style="color:rgb(0,0,221)">1</span><span style="color:rgb(0,128,128)">;</span> row<span style="color:rgb(0,0,64)">++</span><span style="color:rgb(0,128,0)">)</span>
    <span style="color:rgb(0,128,0)">{</span>
      <span style="color:rgb(0,0,255)">for</span> <span style="color:rgb(0,128,0)">(</span><span style="color:rgb(0,0,255)">unsigned</span> <span style="color:rgb(0,0,255)">int</span> col <span style="color:rgb(0,0,128)">=</span> <span style="color:rgb(0,0,221)">0</span><span style="color:rgb(0,128,128)">;</span> col <span style="color:rgb(0,0,128)">&lt;</span> cols <span style="color:rgb(0,0,64)">-</span> <span style="color:rgb(0,0,221)">1</span><span style="color:rgb(0,128,128)">;</span> col<span style="color:rgb(0,0,64)">++</span><span style="color:rgb(0,128,0)">)</span>
        <span style="color:rgb(0,128,0)">{</span>
          pts<span style="color:rgb(0,128,0)">[</span><span style="color:rgb(0,0,221)">0</span><span style="color:rgb(0,128,0)">]</span> <span style="color:rgb(0,0,128)">=</span> col <span style="color:rgb(0,0,64)">+</span> row <span style="color:rgb(0,0,64)">*</span> <span style="color:rgb(0,128,0)">(</span>cols<span style="color:rgb(0,128,0)">)</span><span style="color:rgb(0,128,128)">;</span>
          pts<span style="color:rgb(0,128,0)">[</span><span style="color:rgb(0,0,221)">1</span><span style="color:rgb(0,128,0)">]</span> <span style="color:rgb(0,0,128)">=</span> pts<span style="color:rgb(0,128,0)">[</span><span style="color:rgb(0,0,221)">0</span><span style="color:rgb(0,128,0)">]</span> <span style="color:rgb(0,0,64)">+</span> <span style="color:rgb(0,0,221)">1</span><span style="color:rgb(0,128,128)">;</span>
          pts<span style="color:rgb(0,128,0)">[</span><span style="color:rgb(0,0,221)">2</span><span style="color:rgb(0,128,0)">]</span> <span style="color:rgb(0,0,128)">=</span> pts<span style="color:rgb(0,128,0)">[</span><span style="color:rgb(0,0,221)">0</span><span style="color:rgb(0,128,0)">]</span> <span style="color:rgb(0,0,64)">+</span> cols <span style="color:rgb(0,0,64)">+</span> <span style="color:rgb(0,0,221)">1</span><span style="color:rgb(0,128,128)">;</span>
          pts<span style="color:rgb(0,128,0)">[</span><span style="color:rgb(0,0,221)">3</span><span style="color:rgb(0,128,0)">]</span> <span style="color:rgb(0,0,128)">=</span> pts<span style="color:rgb(0,128,0)">[</span><span style="color:rgb(0,0,221)">0</span><span style="color:rgb(0,128,0)">]</span> <span style="color:rgb(0,0,64)">+</span> cols<span style="color:rgb(0,128,128)">;</span>
          polys<span style="color:rgb(0,0,64)">-</span><span style="color:rgb(0,0,128)">&gt;</span>InsertNextCell<span style="color:rgb(0,128,0)">(</span><span style="color:rgb(0,0,221)">4</span>,pts<span style="color:rgb(0,128,0)">)</span><span style="color:rgb(0,128,128)">;</span>
        <span style="color:rgb(0,128,0)">}</span>
    <span style="color:rgb(0,128,0)">}</span>
  surface<span style="color:rgb(0,0,64)">-</span><span style="color:rgb(0,0,128)">&gt;</span>SetPoints<span style="color:rgb(0,128,0)">(</span>points<span style="color:rgb(0,128,0)">)</span><span style="color:rgb(0,128,128)">;</span>
  surface<span style="color:rgb(0,0,64)">-</span><span style="color:rgb(0,0,128)">&gt;</span>SetPolys<span style="color:rgb(0,128,0)">(</span>polys<span style="color:rgb(0,128,0)">)</span><span style="color:rgb(0,128,128)">;</span>
 
  <span style="color:rgb(0,0,255)">return</span> surface<span style="color:rgb(0,128,128)">;</span>
<span style="color:rgb(0,128,0)">}</span></pre><pre style="padding:0px;border:0px none white;line-height:1.2em;font-size:10px;margin-top:0px;margin-bottom:0px;background-image:none;vertical-align:top"><span style="color:rgb(0,128,0)"><br>

</span></pre><pre style="padding:0px;border:0px none white;line-height:1.2em;font-size:10px;margin-top:0px;margin-bottom:0px;background-image:none;vertical-align:top"><span style="color:rgb(0,128,0)"><br>
</span></pre></pre><pre style="vertical-align:top;line-height:1.2em;font-size:10px;margin-bottom:0px;margin-top:0px;border:0px none white;padding:0px;background-image:none"><span style="color:rgb(0,128,128)"><br>
</span></pre><pre style="vertical-align:top;line-height:1.2em;font-size:10px;margin-bottom:0px;margin-top:0px;border:0px none white;padding:0px;background-image:none"><span style="color:rgb(0,128,128)">please reply as soon as possible</span></pre>

</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Tue, Jul 9, 2013 at 6:00 PM,  <span dir="ltr">&lt;<a href="mailto:vtkusers-request@vtk.org" target="_blank">vtkusers-request@vtk.org</a>&gt;</span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Send vtkusers mailing list submissions to<br>
        <a href="mailto:vtkusers@vtk.org" target="_blank">vtkusers@vtk.org</a><br>
<br>
To subscribe or unsubscribe via the World Wide Web, visit<br>
        <a href="http://www.vtk.org/mailman/listinfo/vtkusers" target="_blank">http://www.vtk.org/mailman/listinfo/vtkusers</a><br>
or, via email, send a message with subject or body &#39;help&#39; to<br>
        <a href="mailto:vtkusers-request@vtk.org" target="_blank">vtkusers-request@vtk.org</a><br>
<br>
You can reach the person managing the list at<br>
        <a href="mailto:vtkusers-owner@vtk.org" target="_blank">vtkusers-owner@vtk.org</a><br>
<br>
When replying, please edit your Subject line so it is more specific<br>
than &quot;Re: Contents of vtkusers digest...&quot;<br>
<br>
<br>
Today&#39;s Topics:<br>
<br>
   1. Re: Vtk 6.0 dotnet (David Cole)<br>
   2. Re: Regarding example VTKimagereslicemapper (rahul indoria)<br>
   3. FindCell method of vtkCellLocator (shinpei)<br>
   4. Re: FindCell method of vtkCellLocator (Alex Malyushytskyy)<br>
   5. VTK Stereo Rendering (mailagentrus)<br>
   6. [vtkUsers] About Different RenderWindowInteractor (hongsongyang)<br>
   7. using vtkGL2PSExporter in python [ under pythonXY() ]<br>
      (Gideon Valch)<br>
   8. Re: Help with image planes example (Ruff)<br>
   9. adding texture to a wavefront .obj  file in vtk (Umer Rafi)<br>
  10. Unexpected actor orientation results (divya)<br>
  11. Re: FindCell method of vtkCellLocator (shinpei)<br>
  12. VTK application running on Linux loads VNC server (Haroon Showgan)<br>
  13. .RAW file (Massinissa Bandou)<br>
  14. Re: .RAW file (Bill Lorensen)<br>
  15. My point cloud data won&#39;t display in the renderer. (Ruff)<br>
<br>
<br>
----------------------------------------------------------------------<br>
<br>
Message: 1<br>
Date: Mon, 8 Jul 2013 16:21:52 +0000<br>
From: David Cole &lt;<a href="mailto:dlrdave@aol.com" target="_blank">dlrdave@aol.com</a>&gt;<br>
Subject: Re: [vtkusers] Vtk 6.0 dotnet<br>
To: &quot; <a href="mailto:vtkusers@vtk.org" target="_blank">vtkusers@vtk.org</a> &quot; &lt;<a href="mailto:vtkusers@vtk.org" target="_blank">vtkusers@vtk.org</a>&gt;, Serge Lalonde<br>
        &lt;<a href="mailto:serge@infolytica.com" target="_blank">serge@infolytica.com</a>&gt;<br>
Message-ID: &lt;<a href="mailto:20130708165306.6B0E66504F@public.kitware.com" target="_blank">20130708165306.6B0E66504F@public.kitware.com</a>&gt;<br>
Content-Type: text/plain; charset=&quot;utf-8&quot;<br>
<br>
Thanks, Serge. It *is* too bad that the kickstarter approach did not yield a funded project this time around. Perhaps later, another one will be successful.<br>
<br>
<br>
<br>
Alex, you wrote ?as for me I would trust more in the results of free development than in results of the projects developed using such financing.?<br>
<br>
<br>
<br>
In response, I would simply point out the results of free development are that ActiViz is presently ?stuck? on the VTK 5.8 version. And it was only ?free as in beer? to those of you who didn?t pay for it.<br>
<br>
<br>
<br>
It?s also too bad that nobody else has stepped up and said, ?hey, how can I contribute and help to make this happen?? (Aside from the 20 kickstarter project backers [1] -- thanks again, guys...)<br>
<br>
<br>
<br>
For those willing to contribute effort and manpower to the problem, rather than money, go for it. VTK and ActiViz are both open source, and may be built and extended by any interested party. I recently abandoned the topic integrating the two [2] due to lack of activity. Anybody who wants to, please feel free to resurrect it, rebase it on current ?master?, and try again. Alternatively, you could simply extend the ActiViz git repo with commits to make it build against an external VTK 5.10 or 6.0 [3].<br>


<br>
<br>
While I am capable and mildly interested in furthering ActiViz .NET, I prefer to spend much of my free time on non-computer related activities these days. I get quite enough compute time just doing my job. But money actually does motivate me... and I would be willing to do the work if paid for it. So, that, plus gauging actual interest level, were my primary motivations for seeking funding via kickstarter.<br>


<br>
<br>
<br>
<br>
<br>
Cheers,<br>
<br>
David Cole<br>
<br>
<br>
<br>
<br>
[1] <a href="http://www.kickstarter.com/projects/dlrdave/activiz-net-installers-featuring-vtk-510/backers" target="_blank">http://www.kickstarter.com/projects/dlrdave/activiz-net-installers-featuring-vtk-510/backers</a><br>


<br>
[2] <a href="http://review.source.kitware.com/#/t/1615/" target="_blank">http://review.source.kitware.com/#/t/1615/</a><br>
<br>
[3] <a href="http://public.kitware.com/gitweb?p=activizdotnet.git" target="_blank">http://public.kitware.com/gitweb?p=activizdotnet.git</a><br>
<br>
<br>
<br>
P.S. ---<br>
<br>
<br>
I would also like to point out that nowadays, you can simply build a managed-C++ project with VS 2012, and ?just link for free? to the native VTK C++ libraries. That doesn?t help folks using other .NET languages, but it is a nice feature of the modern C++ compiler from MS that you can link in both managed and un-managed code together. If you are starting a new Windows Forms application, consider using managed C++ as your language.<br>


-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: &lt;<a href="http://www.vtk.org/pipermail/vtkusers/attachments/20130708/0cc105c5/attachment-0001.htm" target="_blank">http://www.vtk.org/pipermail/vtkusers/attachments/20130708/0cc105c5/attachment-0001.htm</a>&gt;<br>


<br>
------------------------------<br>
<br>
Message: 2<br>
Date: Mon, 8 Jul 2013 20:12:06 +0200<br>
From: rahul indoria &lt;<a href="mailto:rahulindoria5@gmail.com" target="_blank">rahulindoria5@gmail.com</a>&gt;<br>
Subject: Re: [vtkusers] Regarding example VTKimagereslicemapper<br>
To: David Doria &lt;<a href="mailto:daviddoria@gmail.com" target="_blank">daviddoria@gmail.com</a>&gt;, &quot;<a href="mailto:vtkusers@vtk.org" target="_blank">vtkusers@vtk.org</a>&quot;<br>
        &lt;<a href="mailto:vtkusers@vtk.org" target="_blank">vtkusers@vtk.org</a>&gt;<br>
Message-ID:<br>
        &lt;CAGQ+16KkyGkkjmWQ86Xh5=<a href="mailto:VfUnbABFEquKOdKEDKfm9_F1eyaA@mail.gmail.com" target="_blank">VfUnbABFEquKOdKEDKfm9_F1eyaA@mail.gmail.com</a>&gt;<br>
Content-Type: text/plain; charset=&quot;iso-8859-1&quot;<br>
<br>
Hi,<br>
    Could you please tell me, what are port index in VTK functions?<br>
<br>
<br>
On Mon, Jul 8, 2013 at 5:51 PM, David Doria &lt;<a href="mailto:daviddoria@gmail.com" target="_blank">daviddoria@gmail.com</a>&gt; wrote:<br>
<br>
&gt; In the future, please keep the conversation on the mailing list so that<br>
&gt; everyone can participate/benefit from the discussion.<br>
&gt;<br>
&gt; I believe what you&#39;re seeing is a contrast adjustment mechanism (called<br>
&gt; &quot;window level events&quot; -<br>
&gt; <a href="http://www.vtk.org/doc/nightly/html/classvtkInteractorStyleImage.html#details" target="_blank">http://www.vtk.org/doc/nightly/html/classvtkInteractorStyleImage.html#details</a><br>
&gt; ).<br>
&gt;<br>
&gt;<br>
&gt; David<br>
&gt;<br>
&gt;<br>
&gt; On Mon, Jul 8, 2013 at 11:48 AM, rahul indoria &lt;<a href="mailto:rahulindoria5@gmail.com" target="_blank">rahulindoria5@gmail.com</a>&gt;wrote:<br>
&gt;<br>
&gt;&gt; Hi David,<br>
&gt;&gt;                I have one more question regarding this example, in the<br>
&gt;&gt; output of this example(<br>
&gt;&gt; <a href="http://www.vtk.org/Wiki/VTK/Examples/Cxx/Images/ImageSliceMapper" target="_blank">http://www.vtk.org/Wiki/VTK/Examples/Cxx/Images/ImageSliceMapper</a>), why<br>
&gt;&gt; we are getting different colors of the image, when i am left-clicking on<br>
&gt;&gt; the image and moving mouse up and down?<br>
&gt;&gt;<br>
&gt;&gt; Looking forward your reply soon.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; rahul indoria<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; On Mon, Jul 8, 2013 at 3:22 PM, David Doria &lt;<a href="mailto:daviddoria@gmail.com" target="_blank">daviddoria@gmail.com</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt;&gt; On Mon, Jul 8, 2013 at 9:05 AM, rahul indoria &lt;<a href="mailto:rahulindoria5@gmail.com" target="_blank">rahulindoria5@gmail.com</a>&gt;wrote:<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Hi,<br>
&gt;&gt;&gt;&gt;    I was modifying this example:<br>
&gt;&gt;&gt;&gt; <a href="http://www.vtk.org/Wiki/VTK/Examples/Cxx/Images/ImageSliceMapper" target="_blank">http://www.vtk.org/Wiki/VTK/Examples/Cxx/Images/ImageSliceMapper</a><br>
&gt;&gt;&gt;&gt;  in this example, i am deleting the object vtkImageSlice, and when i am<br>
&gt;&gt;&gt;&gt; putting the object &quot;imageSliceMapper&quot; i getting an error?<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; As vtkimageslice class used to represent an image in a 3D scene, i<br>
&gt;&gt;&gt;&gt; don`t want to display this in 3D scene, just want to display on the screen<br>
&gt;&gt;&gt;&gt; that`s why i am deleting this class, so why i am getting this error?<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; I modified this code like this :<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; What do you want to do if not display the image? The problem is that you<br>
&gt;&gt;&gt; can&#39;t call AddViewProp on a mapper - it has to be a vtkProp subclass<br>
&gt;&gt;&gt; (like the vtkImageSlice was). In the future, please include the exact<br>
&gt;&gt;&gt; error that you are getting.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; David<br>
&gt;&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; --<br>
&gt;&gt; *Best  Regards<br>
&gt;&gt; Rahul Indoria<br>
&gt;&gt; Mobile No: <a href="tel:%2B49-157-35652212" value="+4915735652212" target="_blank">+49-157-35652212</a>*<br>
&gt;&gt;<br>
&gt;<br>
&gt;<br>
<br>
<br>
--<br>
*Best  Regards<br>
Rahul Indoria<br>
Mobile No: <a href="tel:%2B49-157-35652212" value="+4915735652212" target="_blank">+49-157-35652212</a>*<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: &lt;<a href="http://www.vtk.org/pipermail/vtkusers/attachments/20130708/8de03097/attachment-0001.htm" target="_blank">http://www.vtk.org/pipermail/vtkusers/attachments/20130708/8de03097/attachment-0001.htm</a>&gt;<br>


<br>
------------------------------<br>
<br>
Message: 3<br>
Date: Mon, 8 Jul 2013 15:44:56 -0700 (PDT)<br>
From: shinpei &lt;<a href="mailto:noro_shinpei@web.de" target="_blank">noro_shinpei@web.de</a>&gt;<br>
Subject: [vtkusers] FindCell method of vtkCellLocator<br>
To: <a href="mailto:vtkusers@vtk.org" target="_blank">vtkusers@vtk.org</a><br>
Message-ID: &lt;<a href="mailto:1373323496433-5721831.post@n5.nabble.com" target="_blank">1373323496433-5721831.post@n5.nabble.com</a>&gt;<br>
Content-Type: text/plain; charset=us-ascii<br>
<br>
Hi,<br>
<br>
I have two triangle cells in my vtkCellLocator and I create a little bb<br>
around a point of one triangle (see picture). Now I use FindCell(bb, idList)<br>
and I should get one id, but I get two. Is this a bug, or must I change<br>
something?<br>
<br>
&lt;<a href="http://vtk.1045678.n5.nabble.com/file/n5721831/Unbenannt.png" target="_blank">http://vtk.1045678.n5.nabble.com/file/n5721831/Unbenannt.png</a>&gt;<br>
- two trinagles (red)<br>
- bb (blue)<br>
<br>
My code:<br>
<br>
    for (vtkIdType ptId = 0; ptId &lt; geometry-&gt;GetNumberOfPoints(); ++ptId)<br>
    {<br>
        bounds[0] = trianglePoint[0] - 0.01;<br>
        bounds[1] = trianglePoint[0] + 0.01;<br>
        bounds[2] = trianglePoint[1] - 0.01;<br>
        bounds[3] = trianglePoint[1] + 0.01;<br>
        bounds[4] = trianglePoint[2] - 0.01;<br>
        bounds[5] = trianglePoint[2] + 0.01;<br>
<br>
        cellLocator-&gt;FindCellsWithinBounds(bounds, foundCells);<br>
<br>
        int size = foundCells-&gt;GetNumberOfIds(); // is always two<br>
    }<br>
<br>
<br>
Thx<br>
<br>
<br>
<br>
--<br>
View this message in context: <a href="http://vtk.1045678.n5.nabble.com/FindCell-method-of-vtkCellLocator-tp5721831.html" target="_blank">http://vtk.1045678.n5.nabble.com/FindCell-method-of-vtkCellLocator-tp5721831.html</a><br>


Sent from the VTK - Users mailing list archive at Nabble.com.<br>
<br>
<br>
------------------------------<br>
<br>
Message: 4<br>
Date: Mon, 8 Jul 2013 19:00:25 -0700<br>
From: Alex Malyushytskyy &lt;<a href="mailto:alexmalvtk@gmail.com" target="_blank">alexmalvtk@gmail.com</a>&gt;<br>
Subject: Re: [vtkusers] FindCell method of vtkCellLocator<br>
To: shinpei &lt;<a href="mailto:noro_shinpei@web.de" target="_blank">noro_shinpei@web.de</a>&gt;<br>
Cc: VTK &lt;<a href="mailto:vtkusers@vtk.org" target="_blank">vtkusers@vtk.org</a>&gt;<br>
Message-ID:<br>
        &lt;<a href="mailto:CAHR9pJ0m4dYdghFRjZ5Y6YffT23dv3Q%2BScsu4JEK8yMLQZ7rbg@mail.gmail.com" target="_blank">CAHR9pJ0m4dYdghFRjZ5Y6YffT23dv3Q+Scsu4JEK8yMLQZ7rbg@mail.gmail.com</a>&gt;<br>
Content-Type: text/plain; charset=&quot;iso-8859-1&quot;<br>
<br>
It is not clear that attached picture corresponds to your claims.<br>
There is no visible  relation between trianglePoint and<br>
geometry-&gt;GetNumberOfPoints().<br>
Also  for (vtkIdType ptId = 0; ptId &lt; geometry-&gt;GetNumberOfPoints(); ++ptId)<br>
loop does not make any sense cause nothing changes in the loop.<br>
<br>
So I guess your trianglePoint is not what you think it is.<br>
For example if this point is shared by 2 triangles you will have the same<br>
effect.<br>
Another possible problem might be absolute value 0.1 used.<br>
For example your triangle may have size smaller than it, which will be a<br>
source of such effect too.<br>
<br>
Your example is not complete , you could create much better example<br>
initializing all available variables so the behavior can be reproduced.<br>
<br>
Alex<br>
<br>
<br>
<br>
On Mon, Jul 8, 2013 at 3:44 PM, shinpei &lt;<a href="mailto:noro_shinpei@web.de" target="_blank">noro_shinpei@web.de</a>&gt; wrote:<br>
<br>
&gt; Hi,<br>
&gt;<br>
&gt; I have two triangle cells in my vtkCellLocator and I create a little bb<br>
&gt; around a point of one triangle (see picture). Now I use FindCell(bb,<br>
&gt; idList)<br>
&gt; and I should get one id, but I get two. Is this a bug, or must I change<br>
&gt; something?<br>
&gt;<br>
&gt; &lt;<a href="http://vtk.1045678.n5.nabble.com/file/n5721831/Unbenannt.png" target="_blank">http://vtk.1045678.n5.nabble.com/file/n5721831/Unbenannt.png</a>&gt;<br>
&gt; - two trinagles (red)<br>
&gt; - bb (blue)<br>
&gt;<br>
&gt; My code:<br>
&gt;<br>
&gt;     for (vtkIdType ptId = 0; ptId &lt; geometry-&gt;GetNumberOfPoints(); ++ptId)<br>
&gt;     {<br>
&gt;         bounds[0] = trianglePoint[0] - 0.01;<br>
&gt;         bounds[1] = trianglePoint[0] + 0.01;<br>
&gt;         bounds[2] = trianglePoint[1] - 0.01;<br>
&gt;         bounds[3] = trianglePoint[1] + 0.01;<br>
&gt;         bounds[4] = trianglePoint[2] - 0.01;<br>
&gt;         bounds[5] = trianglePoint[2] + 0.01;<br>
&gt;<br>
&gt;         cellLocator-&gt;FindCellsWithinBounds(bounds, foundCells);<br>
&gt;<br>
&gt;         int size = foundCells-&gt;GetNumberOfIds(); // is always two<br>
&gt;     }<br>
&gt;<br>
&gt;<br>
&gt; Thx<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; --<br>
&gt; View this message in context:<br>
&gt; <a href="http://vtk.1045678.n5.nabble.com/FindCell-method-of-vtkCellLocator-tp5721831.html" target="_blank">http://vtk.1045678.n5.nabble.com/FindCell-method-of-vtkCellLocator-tp5721831.html</a><br>
&gt; Sent from the VTK - Users mailing list archive at Nabble.com.<br>
&gt; _______________________________________________<br>
&gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt;<br>
&gt; Visit other Kitware open-source projects at<br>
&gt; <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
&gt;<br>
&gt; Please keep messages on-topic and check the VTK FAQ at:<br>
&gt; <a href="http://www.vtk.org/Wiki/VTK_FAQ" target="_blank">http://www.vtk.org/Wiki/VTK_FAQ</a><br>
&gt;<br>
&gt; Follow this link to subscribe/unsubscribe:<br>
&gt; <a href="http://www.vtk.org/mailman/listinfo/vtkusers" target="_blank">http://www.vtk.org/mailman/listinfo/vtkusers</a><br>
&gt;<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: &lt;<a href="http://www.vtk.org/pipermail/vtkusers/attachments/20130708/533f4d72/attachment-0001.htm" target="_blank">http://www.vtk.org/pipermail/vtkusers/attachments/20130708/533f4d72/attachment-0001.htm</a>&gt;<br>


<br>
------------------------------<br>
<br>
Message: 5<br>
Date: Mon, 8 Jul 2013 22:09:00 -0700 (PDT)<br>
From: mailagentrus &lt;<a href="mailto:mailagentrus@mail.ru" target="_blank">mailagentrus@mail.ru</a>&gt;<br>
Subject: [vtkusers] VTK Stereo Rendering<br>
To: <a href="mailto:vtkusers@vtk.org" target="_blank">vtkusers@vtk.org</a><br>
Message-ID: &lt;<a href="mailto:1373346540408-5721833.post@n5.nabble.com" target="_blank">1373346540408-5721833.post@n5.nabble.com</a>&gt;<br>
Content-Type: text/plain; charset=us-ascii<br>
<br>
Hi! I want to add a stereo mode to my program. Program wil be show pairs of<br>
images image in stereo mode (with Nvidia 3d vision). I set up NVidia Qudro<br>
410 and saw stereo mode with Polydata object with using Paraview.<br>
But, when I try to make own program i see inly the firs pair images in<br>
stereo mode, after that image in right eye does not update... Updates inly<br>
the left eye image.<br>
Help me, please!<br>
<br>
Code:<br>
<br>
#include &lt;vtkPolyDataReader.h&gt;<br>
#include &lt;vtkSmartPointer.h&gt;<br>
#include &lt;vtkDataSetMapper.h&gt;<br>
#include &lt;vtkActor.h&gt;<br>
#include &lt;vtkRenderWindow.h&gt;<br>
#include &lt;vtkRenderer.h&gt;<br>
#include &lt;vtkRenderWindowInteractor.h&gt;<br>
#include &lt;vtkCamera.h&gt;<br>
#include &quot;vtkCommand.h&quot;<br>
#include &quot;vtkImageData.h&quot;<br>
#include &lt;vtkBMPReader.h&gt;<br>
#include &lt;vtkImageViewer2.h&gt;<br>
#include &lt;vtkImageActor.h&gt;<br>
<br>
vtkSmartPointer&lt;vtkBMPReader&gt; readerR;<br>
vtkSmartPointer&lt;vtkBMPReader&gt; readerL;<br>
vtkSmartPointer&lt;vtkImageViewer2&gt; imageViewer;<br>
<br>
class vtkTimerCallback : public vtkCommand<br>
{<br>
  public:<br>
    static vtkTimerCallback *New()<br>
    {<br>
      vtkTimerCallback *cb = new vtkTimerCallback;<br>
      cb-&gt;TimerCount = 0;<br>
      return cb;<br>
    }<br>
<br>
    virtual void Execute(vtkObject *vtkNotUsed(caller), unsigned long<br>
eventId,<br>
                         void *vtkNotUsed(callData))<br>
    {<br>
      if (vtkCommand::TimerEvent == eventId)<br>
        {<br>
<br>
// for example name for left eye image is<br>
                readerL-&gt;SetFileName ( &quot;D:/1234/-40.bmp&quot;);<br>
                readerL-&gt;Update();<br>
<br>
// for example name for right eye image is<br>
                readerR-&gt;SetFileName ( &quot;D:/1234/40.bmp&quot;);<br>
                readerR-&gt;Update();<br>
<br>
                imageViewer-&gt;SetInput(readerL-&gt;GetOutput());<br>
                imageViewer-&gt;GetRenderWindow()-&gt;SetStereoTypeToLeft();<br>
                imageViewer-&gt;GetRenderWindow()-&gt;Render();<br>
  imageViewer-&gt;GetRenderer()-&gt;ResetCamera();<br>
                imageViewer-&gt;GetRenderWindow()-&gt;Render();<br>
<br>
                imageViewer-&gt;GetRenderWindow()-&gt;StereoUpdate();<br>
<br>
                imageViewer-&gt;SetInput(readerL-&gt;GetOutput());<br>
                imageViewer-&gt;GetRenderWindow()-&gt;SetStereoTypeToRight();<br>
                imageViewer-&gt;GetRenderWindow()-&gt;Render();<br>
  imageViewer-&gt;GetRenderer()-&gt;ResetCamera();<br>
                imageViewer-&gt;GetRenderWindow()-&gt;Render();<br>
<br>
                imageViewer-&gt;GetRenderWindow()-&gt;StereoUpdate();<br>
<br>
        ++this-&gt;TimerCount;<br>
        }<br>
        cout &lt;&lt; this-&gt;TimerCount &lt;&lt; endl;<br>
    }<br>
<br>
  private:<br>
    int TimerCount;<br>
<br>
};<br>
<br>
<br>
int main ( int argc, char *argv[] )<br>
{<br>
  //Read the image<br>
   readerL =<br>
    vtkSmartPointer&lt;vtkBMPReader&gt;::New();<br>
  readerL-&gt;SetFileName ( &quot;D:/1234/-5.bmp&quot;);<br>
  readerL-&gt;Update();<br>
<br>
   readerR =<br>
    vtkSmartPointer&lt;vtkBMPReader&gt;::New();<br>
  readerR-&gt;SetFileName ( &quot;D:/1234/5.bmp&quot;);<br>
  readerR-&gt;Update();<br>
<br>
  // Visualize<br>
  imageViewer =<br>
    vtkSmartPointer&lt;vtkImageViewer2&gt;::New();<br>
<br>
   vtkSmartPointer&lt;vtkRenderWindowInteractor&gt; renderWindowInteractor =<br>
    vtkSmartPointer&lt;vtkRenderWindowInteractor&gt;::New();<br>
  imageViewer-&gt;SetupInteractor(renderWindowInteractor);<br>
<br>
    imageViewer-&gt;GetRenderWindow()-&gt;SetSize( 800, 600 );<br>
<br>
  imageViewer-&gt;GetRenderWindow()-&gt;StereoCapableWindowOn();<br>
  imageViewer-&gt;GetRenderWindow()-&gt;SetStereoTypeToCrystalEyes();<br>
  imageViewer-&gt;GetRenderWindow()-&gt;SetStereoRender(1);<br>
  imageViewer-&gt;GetRenderWindow()-&gt;StereoUpdate();<br>
<br>
 renderWindowInteractor-&gt;Initialize();<br>
<br>
  imageViewer-&gt;SetInput(readerBase-&gt;GetOutput());<br>
  imageViewer-&gt;GetRenderWindow()-&gt;Render();<br>
  imageViewer-&gt;GetRenderer()-&gt;ResetCamera();<br>
                imageViewer-&gt;GetRenderWindow()-&gt;Render();<br>
<br>
   // Sign up to receive TimerEvent<br>
  vtkSmartPointer&lt;vtkTimerCallback&gt; cb =<br>
    vtkSmartPointer&lt;vtkTimerCallback&gt;::New();<br>
  renderWindowInteractor-&gt;AddObserver(vtkCommand::TimerEvent, cb);<br>
<br>
  int timerId = renderWindowInteractor-&gt;CreateRepeatingTimer(100);<br>
  std::cout &lt;&lt; &quot;timerId: &quot; &lt;&lt; timerId &lt;&lt; std::endl;<br>
<br>
  renderWindowInteractor-&gt;Start();<br>
<br>
   return EXIT_SUCCESS;<br>
}<br>
<br>
<br>
<br>
<br>
--<br>
View this message in context: <a href="http://vtk.1045678.n5.nabble.com/VTK-Stereo-Rendering-tp5721833.html" target="_blank">http://vtk.1045678.n5.nabble.com/VTK-Stereo-Rendering-tp5721833.html</a><br>
Sent from the VTK - Users mailing list archive at Nabble.com.<br>
<br>
<br>
------------------------------<br>
<br>
Message: 6<br>
Date: Tue, 9 Jul 2013 14:08:36 +0800<br>
From: &quot;hongsongyang&quot; &lt;<a href="mailto:hongsongyang@163.com" target="_blank">hongsongyang@163.com</a>&gt;<br>
Subject: [vtkusers] [vtkUsers] About Different RenderWindowInteractor<br>
To: &lt;<a href="mailto:vtkusers@vtk.org" target="_blank">vtkusers@vtk.org</a>&gt;<br>
Message-ID: &lt;D36F8CD489D643279CDEF9B7802D2D8F@WlfPC&gt;<br>
Content-Type: text/plain; charset=&quot;us-ascii&quot;<br>
<br>
Dear All:<br>
<br>
     I have several renders (e.g 4 render), and we could use SetViewport to<br>
display all of them in one RenderWindow.<br>
<br>
My question is that could I set different interactor for each of the render?<br>
<br>
For example, for render1, I only need zoom and ww/wl operation, but for<br>
render2, I need zoom, pan and rotate operation.<br>
<br>
<br>
<br>
Thanks a lot.<br>
<br>
Hongsongyang<br>
<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: &lt;<a href="http://www.vtk.org/pipermail/vtkusers/attachments/20130709/73d6e3a8/attachment-0001.htm" target="_blank">http://www.vtk.org/pipermail/vtkusers/attachments/20130709/73d6e3a8/attachment-0001.htm</a>&gt;<br>


<br>
------------------------------<br>
<br>
Message: 7<br>
Date: Mon, 8 Jul 2013 23:34:35 -0700<br>
From: Gideon Valch &lt;<a href="mailto:gvalch1237@gmail.com" target="_blank">gvalch1237@gmail.com</a>&gt;<br>
Subject: [vtkusers] using vtkGL2PSExporter in python [ under<br>
        pythonXY() ]<br>
To: <a href="mailto:vtkusers@vtk.org" target="_blank">vtkusers@vtk.org</a><br>
Message-ID:<br>
        &lt;<a href="mailto:CAEEGk3YCKrV6gQCtRoPXZZQXQ%2BQr7J%2BKPgK%2BzLAAeF2e6%2BKpgw@mail.gmail.com" target="_blank">CAEEGk3YCKrV6gQCtRoPXZZQXQ+Qr7J+KPgK+zLAAeF2e6+Kpgw@mail.gmail.com</a>&gt;<br>
Content-Type: text/plain; charset=&quot;iso-8859-1&quot;<br>
<br>
Hello,<br>
<br>
I use pythonxy() as my platform for python supported vtk.     Currently,<br>
I&#39;m trying to export a vtk render window to post script using the sample<br>
code (at bottom) but I&#39;m getting an error (see below).   I suspect this<br>
relates to how pythonxy() is compiled.  Can anyone suggest a workaround?<br>
<br>
Thanks,<br>
GV<br>
<br>
exporter = vtk.vtkGL2PSExporter()<br>
AttributeError: &#39;module&#39; object has no attribute &#39;vtkGL2PSExporter&#39;<br>
<br>
----------------------------<br>
<br>
prefix=&quot;c:\\temp\\foo444&quot;<br>
exporter = vtk.vtkGL2PSExporter()<br>
exporter.SetFilePrefix(prefix)<br>
exporter.SetFileFormatToSVG()<br>
exporter.SetRenderWindow(renWin)<br>
exporter.CompressOff()<br>
exporter.SetSortToOff()<br>
#exporter.DrawBackgroundOn()<br>
#exporter.Write3DPropsAsRasterImageOn()<br>
exporter.Write()<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: &lt;<a href="http://www.vtk.org/pipermail/vtkusers/attachments/20130708/2dfee622/attachment-0001.htm" target="_blank">http://www.vtk.org/pipermail/vtkusers/attachments/20130708/2dfee622/attachment-0001.htm</a>&gt;<br>


<br>
------------------------------<br>
<br>
Message: 8<br>
Date: Tue, 9 Jul 2013 00:44:38 -0700 (PDT)<br>
From: Ruff &lt;<a href="mailto:albin.nilsson@gmail.com" target="_blank">albin.nilsson@gmail.com</a>&gt;<br>
Subject: Re: [vtkusers] Help with image planes example<br>
To: <a href="mailto:vtkusers@vtk.org" target="_blank">vtkusers@vtk.org</a><br>
Message-ID: &lt;<a href="mailto:1373355878399-5721836.post@n5.nabble.com" target="_blank">1373355878399-5721836.post@n5.nabble.com</a>&gt;<br>
Content-Type: text/plain; charset=us-ascii<br>
<br>
Thank you!<br>
The problem is that when I tried with ImageData as input in volume16reader I<br>
got the error &quot;Attempt to connect input port index 0 for an algorithm with 0<br>
input ports&quot;<br>
Using ImageData as input directly to vtkImagePlaneWidget worked fine though,<br>
so I guess that solves it.<br>
(My VTK-programming right now is mostly trial and error along with trying to<br>
understand the different data structures and the pipeline)<br>
<br>
<br>
<br>
--<br>
View this message in context: <a href="http://vtk.1045678.n5.nabble.com/Help-with-image-planes-example-tp5721813p5721836.html" target="_blank">http://vtk.1045678.n5.nabble.com/Help-with-image-planes-example-tp5721813p5721836.html</a><br>


Sent from the VTK - Users mailing list archive at Nabble.com.<br>
<br>
<br>
------------------------------<br>
<br>
Message: 9<br>
Date: Tue, 09 Jul 2013 11:23:11 +0200<br>
From: Umer Rafi &lt;<a href="mailto:umer.rafi@rwth-aachen.de" target="_blank">umer.rafi@rwth-aachen.de</a>&gt;<br>
Subject: [vtkusers] adding texture to a wavefront .obj  file in vtk<br>
To: <a href="mailto:vtkusers@vtk.org" target="_blank">vtkusers@vtk.org</a><br>
Message-ID: &lt;<a href="mailto:fb959ae41b00e3.51dbf29f@rwth-aachen.de" target="_blank">fb959ae41b00e3.51dbf29f@rwth-aachen.de</a>&gt;<br>
Content-Type: text/plain; CHARSET=US-ASCII<br>
<br>
Hello everyone,<br>
<br>
    I am new to vtk. I am having a wavefront file of a 3d human model. What I want to do is to render it using vtk and apply different textures to different parts of the 3d human model. For example I have a texture image containing a shirt that I want to apply to torso and arms only.  Another one for jeans that I want to apply to legs and thighs only. I will really appreciate if anyone can provide a sample code snippet to get me started.<br>


<br>
<br>
thanks in advance.<br>
<br>
Regards<br>
Umer<br>
<br>
<br>
------------------------------<br>
<br>
Message: 10<br>
Date: Tue, 9 Jul 2013 16:53:12 +0530<br>
From: &quot;divya&quot; &lt;<a href="mailto:divya@triassicsolutions.com" target="_blank">divya@triassicsolutions.com</a>&gt;<br>
Subject: [vtkusers] Unexpected actor orientation results<br>
To: &quot;Vtk Users&quot; &lt;<a href="mailto:vtkusers@vtk.org" target="_blank">vtkusers@vtk.org</a>&gt;<br>
Message-ID: &lt;004201ce7c96$b5c358a0$214a09e0$@<a href="http://triassicsolutions.com" target="_blank">triassicsolutions.com</a>&gt;<br>
Content-Type: text/plain; charset=&quot;us-ascii&quot;<br>
<br>
<br>
<br>
Dear vtkUsers,<br>
<br>
I am trying to find the orientation of an actor while I&#39;m rotating it, the z<br>
and y are correct, but the value range for  the x axis is [-90, 90], whereas<br>
the value range for  z and y axis is [-180, 180].<br>
<br>
<br>
<br>
Also the rotation doesn&#39;t happen in the chosen axis, for example when I<br>
chose to rotate the actor by 15 degrees on y-axis, the value of the z-axis<br>
increases.<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: &lt;<a href="http://www.vtk.org/pipermail/vtkusers/attachments/20130709/3543ac30/attachment-0001.htm" target="_blank">http://www.vtk.org/pipermail/vtkusers/attachments/20130709/3543ac30/attachment-0001.htm</a>&gt;<br>


-------------- next part --------------<br>
A non-text attachment was scrubbed...<br>
Name: not available<br>
Type: image/jpeg<br>
Size: 10515 bytes<br>
Desc: not available<br>
URL: &lt;<a href="http://www.vtk.org/pipermail/vtkusers/attachments/20130709/3543ac30/attachment-0002.jpeg" target="_blank">http://www.vtk.org/pipermail/vtkusers/attachments/20130709/3543ac30/attachment-0002.jpeg</a>&gt;<br>


-------------- next part --------------<br>
A non-text attachment was scrubbed...<br>
Name: not available<br>
Type: image/jpeg<br>
Size: 13048 bytes<br>
Desc: not available<br>
URL: &lt;<a href="http://www.vtk.org/pipermail/vtkusers/attachments/20130709/3543ac30/attachment-0003.jpeg" target="_blank">http://www.vtk.org/pipermail/vtkusers/attachments/20130709/3543ac30/attachment-0003.jpeg</a>&gt;<br>


<br>
------------------------------<br>
<br>
Message: 11<br>
Date: Tue, 9 Jul 2013 05:23:41 -0700 (PDT)<br>
From: shinpei &lt;<a href="mailto:noro_shinpei@web.de" target="_blank">noro_shinpei@web.de</a>&gt;<br>
Subject: Re: [vtkusers] FindCell method of vtkCellLocator<br>
To: <a href="mailto:vtkusers@vtk.org" target="_blank">vtkusers@vtk.org</a><br>
Message-ID: &lt;<a href="mailto:1373372621955-5721840.post@n5.nabble.com" target="_blank">1373372621955-5721840.post@n5.nabble.com</a>&gt;<br>
Content-Type: text/plain; charset=us-ascii<br>
<br>
Sry... I thought it would be clear what I mean.<br>
<br>
The geometry contains two triangles:<br>
Points are:<br>
(0 0 0)<br>
(0 10 0)<br>
(10 0 0)<br>
(10 10 0)<br>
<br>
with connection:<br>
(0 1 2)<br>
(1 2 3)<br>
<br>
     for (vtkIdType ptId = 0; ptId &lt; geometry-&gt;GetNumberOfPoints(); ++ptId)<br>
    {<br>
        geometry-&gt;getPoints()-&gt;GetPoint(ptId, trianglePoint);<br>
<br>
        bounds[0] = trianglePoint[0] - 0.01;<br>
        bounds[1] = trianglePoint[0] + 0.01;<br>
        bounds[2] = trianglePoint[1] - 0.01;<br>
        bounds[3] = trianglePoint[1] + 0.01;<br>
        bounds[4] = trianglePoint[2] - 0.01;<br>
        bounds[5] = trianglePoint[2] + 0.01;<br>
<br>
        cellLocator-&gt;FindCellsWithinBounds(bounds, foundCells);<br>
<br>
        int size = foundCells-&gt;GetNumberOfIds(); // is always two<br>
    }<br>
<br>
The trianglePoint is e.g. (0 0 0) (first iteration of the loop) so I should<br>
get only one triangle, but I get always two triangles. The bb is small<br>
enough and there is a point which correspons to only one triangle.<br>
<br>
<br>
<br>
--<br>
View this message in context: <a href="http://vtk.1045678.n5.nabble.com/FindCell-method-of-vtkCellLocator-tp5721831p5721840.html" target="_blank">http://vtk.1045678.n5.nabble.com/FindCell-method-of-vtkCellLocator-tp5721831p5721840.html</a><br>


Sent from the VTK - Users mailing list archive at Nabble.com.<br>
<br>
<br>
------------------------------<br>
<br>
Message: 12<br>
Date: Tue, 9 Jul 2013 15:43:23 +0300<br>
From: Haroon Showgan &lt;<a href="mailto:haroon.showgan@gmail.com" target="_blank">haroon.showgan@gmail.com</a>&gt;<br>
Subject: [vtkusers] VTK application running on Linux loads VNC server<br>
To: <a href="mailto:vtkusers@vtk.org" target="_blank">vtkusers@vtk.org</a><br>
Message-ID:<br>
        &lt;CAJ=<a href="mailto:gTgXfT44oBK1Qz5idLBRDt0kdiZuLh0iA%2BmrtAChwR_-Pkw@mail.gmail.com" target="_blank">gTgXfT44oBK1Qz5idLBRDt0kdiZuLh0iA+mrtAChwR_-Pkw@mail.gmail.com</a>&gt;<br>
Content-Type: text/plain; charset=&quot;iso-8859-1&quot;<br>
<br>
Hi,<br>
<br>
I&#39;m implementing a VTK application for visualizing geometrical 3D objects.<br>
Most of the code is written in C++, and I use TCL-TK widgets for the GUI (I<br>
use *vtkTkRenderWidget* for the main canvas).<br>
<br>
Most of my objects are *vtkVoxel* objects inserted into a *<br>
vtkUnstructuredGrid*.<br>
<br>
I run this application on a Linux server and I connect to this server from<br>
Windows using VNC. I noticed that when I load a very large data set into<br>
the application then the *VNC server* (on the Linux machine) consumes a lot<br>
of memory and uses 100% CPU. I didn&#39;t realize that the memory and CPU<br>
usages of a VNC server would be affected so much like this.<br>
<br>
 Note that my VTK application is also consuming a lot of memory and CPU,<br>
but what I find strange is that the VNC server is also affected (the<br>
process is called *Xvnc_core*).<br>
<br>
Does anyone know how this is caused and do you have any suggestion how to<br>
mitigate the problem?<br>
<br>
Regards,<br>
Haroon<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: &lt;<a href="http://www.vtk.org/pipermail/vtkusers/attachments/20130709/621fefc2/attachment-0001.htm" target="_blank">http://www.vtk.org/pipermail/vtkusers/attachments/20130709/621fefc2/attachment-0001.htm</a>&gt;<br>


<br>
------------------------------<br>
<br>
Message: 13<br>
Date: Tue, 9 Jul 2013 07:25:46 -0700 (PDT)<br>
From: Massinissa Bandou &lt;Massinissa.Bandou@USherbrooke.ca&gt;<br>
Subject: [vtkusers] .RAW file<br>
To: <a href="mailto:vtkusers@vtk.org" target="_blank">vtkusers@vtk.org</a><br>
Message-ID: &lt;<a href="mailto:1373379946181-5721842.post@n5.nabble.com" target="_blank">1373379946181-5721842.post@n5.nabble.com</a>&gt;<br>
Content-Type: text/plain; charset=us-ascii<br>
<br>
Hello everyone,<br>
<br>
I tried to read a (.raw) file with the following code but it displays a RED<br>
CUBE. Here is some information about my file  dataInfo.txt<br>
&lt;<a href="http://vtk.1045678.n5.nabble.com/file/n5721842/dataInfo.txt" target="_blank">http://vtk.1045678.n5.nabble.com/file/n5721842/dataInfo.txt</a>&gt;  . Is there<br>
something wrong in my code?<br>
<br>
thx for your time and help!<br>
<br>
sorry my file is too large to be send.<br>
<br>
#include &lt;vtkSmartPointer.h&gt;<br>
#include &lt;vtkRenderWindow.h&gt;<br>
#include &lt;vtkRenderWindowInteractor.h&gt;<br>
#include &lt;vtkRenderer.h&gt;<br>
#include &lt;vtkActor&gt;<br>
#include &lt;vtkImageReader&gt;<br>
#include &lt;vtkDataSetMapper&gt;<br>
<br>
int main(int argc, char *argv[])<br>
{<br>
        vtkImageReader *reader = vtkImageReader::New();<br>
        reader-&gt;SetFileName(file.c_str());<br>
        reader-&gt;SetFileDimensionality(3);<br>
        reader-&gt;SetNumberOfScalarComponents(1);<br>
        reader-&gt;SetDataExtent(0,512,0,512,0,512);<br>
        reader-&gt;SetDataSpacing(0.145, 0.145, 0.145);<br>
        reader-&gt;SetDataByteOrderToBigEndian();<br>
        reader-&gt;SetDataScalarTypeToChar();<br>
        reader-&gt;Update();<br>
<br>
        vtkSmartPointer&lt;vtkDataSetMapper&gt; map =<br>
vtkSmartPointer&lt;vtkDataSetMapper&gt;::New();<br>
        map-&gt;SetInputConnection(reader-&gt;GetOutputPort());<br>
<br>
<br>
        vtkSmartPointer&lt;vtkActor&gt; actor = vtkSmartPointer&lt;vtkActor&gt;::New();<br>
        actor-&gt;SetMapper(map);<br>
<br>
        vtkSmartPointer&lt;vtkRenderWindowInteractor&gt; interactor =<br>
vtkSmartPointer&lt;vtkRenderWindowInteractor&gt;::New();<br>
<br>
        vtkSmartPointer&lt;vtkRenderWindow&gt; renderWindow =<br>
vtkSmartPointer&lt;vtkRenderWindow&gt;::New();<br>
        interactor-&gt;SetRenderWindow(renderWindow);<br>
        vtkSmartPointer&lt;vtkRenderer&gt; renderer =<br>
vtkSmartPointer&lt;vtkRenderer&gt;::New();<br>
        renderWindow-&gt;AddRenderer(renderer);<br>
        renderer-&gt;AddActor(actor);<br>
<br>
        renderWindow-&gt;Render();<br>
        interactor-&gt;Start();<br>
}<br>
<br>
<br>
<br>
<br>
--<br>
View this message in context: <a href="http://vtk.1045678.n5.nabble.com/RAW-file-tp5721842.html" target="_blank">http://vtk.1045678.n5.nabble.com/RAW-file-tp5721842.html</a><br>
Sent from the VTK - Users mailing list archive at Nabble.com.<br>
<br>
<br>
------------------------------<br>
<br>
Message: 14<br>
Date: Tue, 9 Jul 2013 11:38:50 -0400<br>
From: Bill Lorensen &lt;<a href="mailto:bill.lorensen@gmail.com" target="_blank">bill.lorensen@gmail.com</a>&gt;<br>
Subject: Re: [vtkusers] .RAW file<br>
To: Massinissa Bandou &lt;<a href="mailto:Massinissa.Bandou@usherbrooke.ca" target="_blank">Massinissa.Bandou@usherbrooke.ca</a>&gt;<br>
Cc: VTK Users &lt;<a href="mailto:vtkusers@vtk.org" target="_blank">vtkusers@vtk.org</a>&gt;<br>
Message-ID:<br>
        &lt;<a href="mailto:CADZJ4hNXVuS_7L9ocCzex3XHpqyg5dpdKJ2NmxfQn_DnaSDp_Q@mail.gmail.com" target="_blank">CADZJ4hNXVuS_7L9ocCzex3XHpqyg5dpdKJ2NmxfQn_DnaSDp_Q@mail.gmail.com</a>&gt;<br>
Content-Type: text/plain; charset=&quot;iso-8859-1&quot;<br>
<br>
If your data is 512x512x512 then<br>
reader-&gt;SetDataExtent(0,512,0,512,0,512);<br>
should be:<br>
reader-&gt;SetDataExtent(0,511,0,511,0,511);<br>
<br>
Also be certain you are setting the correct endianness.<br>
<br>
<br>
On Tue, Jul 9, 2013 at 10:25 AM, Massinissa Bandou &lt;<br>
<a href="mailto:Massinissa.Bandou@usherbrooke.ca" target="_blank">Massinissa.Bandou@usherbrooke.ca</a>&gt; wrote:<br>
<br>
&gt; Hello everyone,<br>
&gt;<br>
&gt; I tried to read a (.raw) file with the following code but it displays a RED<br>
&gt; CUBE. Here is some information about my file  dataInfo.txt<br>
&gt; &lt;<a href="http://vtk.1045678.n5.nabble.com/file/n5721842/dataInfo.txt" target="_blank">http://vtk.1045678.n5.nabble.com/file/n5721842/dataInfo.txt</a>&gt;  . Is there<br>
&gt; something wrong in my code?<br>
&gt;<br>
&gt; thx for your time and help!<br>
&gt;<br>
&gt; sorry my file is too large to be send.<br>
&gt;<br>
&gt; #include &lt;vtkSmartPointer.h&gt;<br>
&gt; #include &lt;vtkRenderWindow.h&gt;<br>
&gt; #include &lt;vtkRenderWindowInteractor.h&gt;<br>
&gt; #include &lt;vtkRenderer.h&gt;<br>
&gt; #include &lt;vtkActor&gt;<br>
&gt; #include &lt;vtkImageReader&gt;<br>
&gt; #include &lt;vtkDataSetMapper&gt;<br>
&gt;<br>
&gt; int main(int argc, char *argv[])<br>
&gt; {<br>
&gt;         vtkImageReader *reader = vtkImageReader::New();<br>
&gt;         reader-&gt;SetFileName(file.c_str());<br>
&gt;         reader-&gt;SetFileDimensionality(3);<br>
&gt;         reader-&gt;SetNumberOfScalarComponents(1);<br>
&gt;         reader-&gt;SetDataExtent(0,512,0,512,0,512);<br>
&gt;         reader-&gt;SetDataSpacing(0.145, 0.145, 0.145);<br>
&gt;         reader-&gt;SetDataByteOrderToBigEndian();<br>
&gt;         reader-&gt;SetDataScalarTypeToChar();<br>
&gt;         reader-&gt;Update();<br>
&gt;<br>
&gt;         vtkSmartPointer&lt;vtkDataSetMapper&gt; map =<br>
&gt; vtkSmartPointer&lt;vtkDataSetMapper&gt;::New();<br>
&gt;         map-&gt;SetInputConnection(reader-&gt;GetOutputPort());<br>
&gt;<br>
&gt;<br>
&gt;         vtkSmartPointer&lt;vtkActor&gt; actor = vtkSmartPointer&lt;vtkActor&gt;::New();<br>
&gt;         actor-&gt;SetMapper(map);<br>
&gt;<br>
&gt;         vtkSmartPointer&lt;vtkRenderWindowInteractor&gt; interactor =<br>
&gt; vtkSmartPointer&lt;vtkRenderWindowInteractor&gt;::New();<br>
&gt;<br>
&gt;         vtkSmartPointer&lt;vtkRenderWindow&gt; renderWindow =<br>
&gt; vtkSmartPointer&lt;vtkRenderWindow&gt;::New();<br>
&gt;         interactor-&gt;SetRenderWindow(renderWindow);<br>
&gt;         vtkSmartPointer&lt;vtkRenderer&gt; renderer =<br>
&gt; vtkSmartPointer&lt;vtkRenderer&gt;::New();<br>
&gt;         renderWindow-&gt;AddRenderer(renderer);<br>
&gt;         renderer-&gt;AddActor(actor);<br>
&gt;<br>
&gt;         renderWindow-&gt;Render();<br>
&gt;         interactor-&gt;Start();<br>
&gt; }<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; --<br>
&gt; View this message in context:<br>
&gt; <a href="http://vtk.1045678.n5.nabble.com/RAW-file-tp5721842.html" target="_blank">http://vtk.1045678.n5.nabble.com/RAW-file-tp5721842.html</a><br>
&gt; Sent from the VTK - Users mailing list archive at Nabble.com.<br>
&gt; _______________________________________________<br>
&gt; Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt;<br>
&gt; Visit other Kitware open-source projects at<br>
&gt; <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
&gt;<br>
&gt; Please keep messages on-topic and check the VTK FAQ at:<br>
&gt; <a href="http://www.vtk.org/Wiki/VTK_FAQ" target="_blank">http://www.vtk.org/Wiki/VTK_FAQ</a><br>
&gt;<br>
&gt; Follow this link to subscribe/unsubscribe:<br>
&gt; <a href="http://www.vtk.org/mailman/listinfo/vtkusers" target="_blank">http://www.vtk.org/mailman/listinfo/vtkusers</a><br>
&gt;<br>
<br>
<br>
<br>
--<br>
Unpaid intern in BillsBasement at noware dot com<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: &lt;<a href="http://www.vtk.org/pipermail/vtkusers/attachments/20130709/b188c2b1/attachment-0001.htm" target="_blank">http://www.vtk.org/pipermail/vtkusers/attachments/20130709/b188c2b1/attachment-0001.htm</a>&gt;<br>


<br>
------------------------------<br>
<br>
Message: 15<br>
Date: Tue, 9 Jul 2013 08:46:33 -0700 (PDT)<br>
From: Ruff &lt;<a href="mailto:albin.nilsson@gmail.com" target="_blank">albin.nilsson@gmail.com</a>&gt;<br>
Subject: [vtkusers] My point cloud data won&#39;t display in the renderer.<br>
To: <a href="mailto:vtkusers@vtk.org" target="_blank">vtkusers@vtk.org</a><br>
Message-ID: &lt;<a href="mailto:1373384793963-5721844.post@n5.nabble.com" target="_blank">1373384793963-5721844.post@n5.nabble.com</a>&gt;<br>
Content-Type: text/plain; charset=us-ascii<br>
<br>
All i get is an empty renderWindow. I get no errors, but no data is rendered<br>
either. What am I doing wrong?<br>
<br>
What I do is pretty much this:<br>
<br>
AtomGrid=vtk.vtkUnstructuredGrid()<br>
AtomGrid.SetPoints(    vtkPoints with [index,x,y,z]    )<br>
AtomGrid.GetPointData().SetScalars(    vtkFloatArray with [index, scalar]<br>
)<br>
<br>
volMapper = vtk.vtkUnstructuredGridVolumeRayCastMapper()<br>
volMapper.SetBlendModeToComposite()<br>
volMapper.SetInput(AtomGrid)<br>
<br>
<br>
I tried volMapper.SetScalarModeToUsePointFieldData(), but then it claims<br>
that I have no scalar values to use(!!)<br>
<br>
(I cheated before, and was satisfied using ImageData for this, but now I<br>
really need to get this to work with UnstructuredGrid)<br>
<br>
<br>
<br>
--<br>
View this message in context: <a href="http://vtk.1045678.n5.nabble.com/My-point-cloud-data-won-t-display-in-the-renderer-tp5721844.html" target="_blank">http://vtk.1045678.n5.nabble.com/My-point-cloud-data-won-t-display-in-the-renderer-tp5721844.html</a><br>


Sent from the VTK - Users mailing list archive at Nabble.com.<br>
<br>
<br>
------------------------------<br>
<br>
_______________________________________________<br>
vtkusers mailing list<br>
<a href="mailto:vtkusers@vtk.org" target="_blank">vtkusers@vtk.org</a><br>
<a href="http://www.vtk.org/mailman/listinfo/vtkusers" target="_blank">http://www.vtk.org/mailman/listinfo/vtkusers</a><br>
<br>
<br>
End of vtkusers Digest, Vol 111, Issue 16<br>
*****************************************<span class="HOEnZb"><font color="#888888"><br>
</font></span></blockquote></div><span class="HOEnZb"><font color="#888888"><br><br clear="all"><div><br></div>-- <br><div dir="ltr"><span style="color:rgb(0,0,255)"><b>Best  Regards<br>Rahul Indoria<br>Mobile No: <a href="tel:%2B49-157-35652212" value="+4915735652212" target="_blank">+49-157-35652212</a></b></span><br>
</div>
</font></span></div>
<br>_______________________________________________<br>
Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
<br>
Please keep messages on-topic and check the VTK FAQ at: <a href="http://www.vtk.org/Wiki/VTK_FAQ" target="_blank">http://www.vtk.org/Wiki/VTK_FAQ</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://www.vtk.org/mailman/listinfo/vtkusers" target="_blank">http://www.vtk.org/mailman/listinfo/vtkusers</a><br>
<br></blockquote></div><br><br clear="all"><br>-- <br>Unpaid intern in BillsBasement at noware dot com<br>
</div>