<html><body>
<p>My understanding is that ImplicitModeller gives a distance from polydata, the distance is always positive and will be the distance to the nearest part of the polydata. It does not try to determine in / out, it simply obtains the distance. The suggested method of using intersection with a line sounds like the correct way to determine in/out.<br>
<br>
  regards, Dave Pont<br>
<br>
<br>
<img width="16" height="16" src="cid:1__=43BBFFE7DFE2BFCA8f9e8a@scionresearch.com" border="0" alt="Inactive hide details for &quot;Rashindra Manniesing&quot; &lt;r.manniesing@erasmusmc.nl&gt;">&quot;Rashindra Manniesing&quot; &lt;r.manniesing@erasmusmc.nl&gt;<br>
<br>
<br>

<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr valign="top"><td style="background-image:url(cid:2__=43BBFFE7DFE2BFCA8f9e8a@scionresearch.com); background-repeat: no-repeat; " width="40%">
<ul>
<ul>
<ul>
<ul><b><font size="2">&quot;Rashindra Manniesing&quot; &lt;r.manniesing@erasmusmc.nl&gt;</font></b><font size="2"> </font><br>
<font size="2">Sent by: vtkusers-bounces@vtk.org</font>
<p><font size="2">10/03/2009 01:58</font></ul>
</ul>
</ul>
</ul>
</td><td width="60%">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr valign="top"><td width="1%"><img width="58" height="1" src="cid:3__=43BBFFE7DFE2BFCA8f9e8a@scionresearch.com" border="0" alt=""><br>
<div align="right"><font size="2">To</font></div></td><td width="100%"><img width="1" height="1" src="cid:3__=43BBFFE7DFE2BFCA8f9e8a@scionresearch.com" border="0" alt=""><br>
<font size="2">&lt;vtkusers@vtk.org&gt;</font></td></tr>

<tr valign="top"><td width="1%"><img width="58" height="1" src="cid:3__=43BBFFE7DFE2BFCA8f9e8a@scionresearch.com" border="0" alt=""><br>
<div align="right"><font size="2">cc</font></div></td><td width="100%"><img width="1" height="1" src="cid:3__=43BBFFE7DFE2BFCA8f9e8a@scionresearch.com" border="0" alt=""><br>
</td></tr>

<tr valign="top"><td width="1%"><img width="58" height="1" src="cid:3__=43BBFFE7DFE2BFCA8f9e8a@scionresearch.com" border="0" alt=""><br>
<div align="right"><font size="2">Subject</font></div></td><td width="100%"><img width="1" height="1" src="cid:3__=43BBFFE7DFE2BFCA8f9e8a@scionresearch.com" border="0" alt=""><br>
<font size="2">Re: [vtkusers] implicitmodeller - negative distance inside object</font></td></tr>
</table>

<table border="0" cellspacing="0" cellpadding="0">
<tr valign="top"><td width="58"><img width="1" height="1" src="cid:3__=43BBFFE7DFE2BFCA8f9e8a@scionresearch.com" border="0" alt=""></td><td width="336"><img width="1" height="1" src="cid:3__=43BBFFE7DFE2BFCA8f9e8a@scionresearch.com" border="0" alt=""></td></tr>
</table>
</td></tr>
</table>
<br>
<tt><br>
Thank you for your reactions.<br>
<br>
I've tried several things (in a custom ImplicitMOdeller class):<br>
<br>
1. checked return value of cell-&gt;EvaluatePosition(..), but does not seem to<br>
give the correct sign. According to cell class description, distance2 is<br>
more reliable, but distance2 does not return the sign.<br>
<br>
2. made a OBBTree of the polydata, and using obb-&gt;InsideOrOutisde(x), but<br>
this terribly slowed down the calcutions<br>
<br>
3. Shooting rays (as PointInPolygon), not implemented yet ... first I want<br>
to try existing solutions<br>
<br>
4. Other suggestions perhaps? <br>
<br>
<br>
Rashindra<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
-----BEGIN PGP SIGNED MESSAGE-----<br>
Hash: SHA1<br>
<br>
You will find discussions on this topic in the archives.<br>
Search for a test if point is inside the surface. Generally, there is a<br>
bug in the direct implementation, I work around it by shooting rays and<br>
counting intersections.<br>
<br>
- - Dominik<br>
<br>
<br>
Message: 6<br>
Date: Thu, 05 Mar 2009 23:19:06 +0100<br>
From: Arturo Caissut &lt;arturo_caissut@tiscali.it&gt;<br>
Subject: Re: [vtkusers] implicitmodeller - negative distance inside<br>
                 object<br>
To: vtkusers@vtk.org<br>
Message-ID: &lt;49B04FDA.2070806@tiscali.it&gt;<br>
Content-Type: text/plain; charset=&quot;iso-8859-1&quot;; Format=&quot;flowed&quot;<br>
<br>
Hi,<br>
I had a similar need some time ago during a project developed with a <br>
teacher of mine, and we created a &quot;custom&quot; Implicit Modeller class. <br>
Maybe it could be a good starting point for you: the main (only?) <br>
difference with vtkImplicitModeller is that into the class a &quot;IN/OUT&quot; <br>
check is performed, so that internal points are considered to have <br>
positive distance while external points have a negative one.<br>
It was originally intended as a quick &quot;filling&quot; filter for a 3D surface <br>
polydata, setting a high enough distance value, it generates a full volume.<br>
Hope it'll help you.<br>
<br>
Regards,<br>
Arturo<br>
<br>
<br>
<br>
Rashindra Manniesing ha scritto:<br>
&gt;<br>
&gt; &nbsp;<br>
&gt;<br>
&gt; I am new to VTK so please forgive if the following question has a <br>
&gt; trivial answer.<br>
&gt;<br>
&gt; &nbsp;<br>
&gt;<br>
&gt; I am using ImplicitModeller to get from a PolyData object to a <br>
&gt; distance map, and I was wondering whether it is possible to specify an <br>
&gt; inside and outside of the polydata object, such that the distances <br>
&gt; inside has different sign than the distances outside ?<br>
&gt;<br>
&gt; &nbsp;<br>
&gt;<br>
&gt; Best regards,<br>
&gt;<br>
&gt; Rashindra Manniesing<br>
&gt;<br>
&gt; ------------------------------------------------------------------------<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; Powered by www.kitware.com<br>
&gt;<br>
&gt; Visit other Kitware open-source projects at<br>
</tt><tt><a href="http://www.kitware.com/opensource/opensource.html">http://www.kitware.com/opensource/opensource.html</a></tt><tt><br>
&gt;<br>
&gt; Please keep messages on-topic and check the VTK FAQ at:<br>
</tt><tt><a href="http://www.vtk.org/Wiki/VTK_FAQ">http://www.vtk.org/Wiki/VTK_FAQ</a></tt><tt><br>
&gt;<br>
&gt; Follow this link to subscribe/unsubscribe:<br>
&gt; </tt><tt><a href="http://www.vtk.org/mailman/listinfo/vtkusers">http://www.vtk.org/mailman/listinfo/vtkusers</a></tt><tt><br>
&gt; &nbsp; <br>
<br>
-------------- next part --------------<br>
An embedded and charset-unspecified text was scrubbed...<br>
Name: vtkMyImplicitModeller.cxx<br>
URL:<br>
&lt;</tt><tt><a href="http://www.vtk.org/pipermail/vtkusers/attachments/20090305/8d413123/attachm">http://www.vtk.org/pipermail/vtkusers/attachments/20090305/8d413123/attachm</a></tt><tt><br>
ent-0001.asc&gt;<br>
-------------- next part --------------<br>
An embedded and charset-unspecified text was scrubbed...<br>
Name: vtkMyImplicitModeller.h<br>
URL:<br>
&lt;</tt><tt><a href="http://www.vtk.org/pipermail/vtkusers/attachments/20090305/8d413123/attachm">http://www.vtk.org/pipermail/vtkusers/attachments/20090305/8d413123/attachm</a></tt><tt><br>
ent-0001.txt&gt;<br>
<br>
------------------------------<br>
<br>
Message: 7<br>
Date: Thu, 5 Mar 2009 15:24:21 -0800<br>
From: Robbie Jaeger &lt;rjaeger@gmail.com&gt;<br>
Subject: [vtkusers] Add timestamp to unstructuredgrid or polydata<br>
To: vtkusers@vtk.org<br>
Message-ID:<br>
                 &lt;818aad690903051524y2217caf8lc51c22e4e3322f55@mail.gmail.com&gt;<br>
Content-Type: text/plain; charset=&quot;iso-8859-1&quot;<br>
<br>
Hello,<br>
<br>
I'm creating an unstructuredgrid and exporting it using an<br>
XMLUnstructuredGridWriter object. &nbsp;Is there a timestamp feature for<br>
unstructured grids so that I can label the grid as being from a specific<br>
instance in time? &nbsp;The ultimate goal would be to take a series of these XML<br>
files and be able to go through them step by step.<br>
<br>
If this feature does not exist for the unstructuredgrid class, can the<br>
polydata class do this?<br>
<br>
Thanks,<br>
Robbie<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL:<br>
&lt;</tt><tt><a href="http://www.vtk.org/pipermail/vtkusers/attachments/20090305/9106dc8b/attachm">http://www.vtk.org/pipermail/vtkusers/attachments/20090305/9106dc8b/attachm</a></tt><tt><br>
ent-0001.htm&gt;<br>
<br>
------------------------------<br>
<br>
Message: 8<br>
Date: Thu, 5 Mar 2009 18:42:08 -0800 (PST)<br>
From: John Hsieh &lt;cthsieh2001@yahoo.com&gt;<br>
Subject: [vtkusers] &nbsp;About color map and STL<br>
To: vtkusers@vtk.org<br>
Message-ID: &lt;22365247.post@talk.nabble.com&gt;<br>
Content-Type: text/plain; charset=us-ascii<br>
<br>
<br>
Hello,<br>
I am currently working on one project that requires to calculate the<br>
distance deviation bewteen two surfaces (STL file format) and also asks to<br>
display the deviation in various color.<br>
I knew the vtkLookUpTable class may useful to my project, but I don't know<br>
how to use it.<br>
I need more information about how to use vtkLookUpTable to deal with STL<br>
data.<br>
Thanks<br>
 <br>
 <br>
-- <br>
View this message in context:<br>
</tt><tt><a href="http://www.nabble.com/About-color-map-and-STL-tp22365247p22365247.html">http://www.nabble.com/About-color-map-and-STL-tp22365247p22365247.html</a></tt><tt><br>
Sent from the VTK - Users mailing list archive at Nabble.com.<br>
<br>
<br>
<br>
------------------------------<br>
<br>
Message: 9<br>
Date: Thu, 5 Mar 2009 19:28:47 -0800 (PST)<br>
From: Dasan &lt;janghang@gmail.com&gt;<br>
Subject: [vtkusers] &nbsp;vtkDelaunay2D: How to remove discarded points<br>
To: vtkusers@vtk.org<br>
Message-ID: &lt;22365659.post@talk.nabble.com&gt;<br>
Content-Type: text/plain; charset=us-ascii<br>
<br>
<br>
Dear VTK Users,<br>
<br>
Thanks to many people in this forum, I could use vtkDelaunay2D to construct<br>
mesh from point cloud. &nbsp;Thank you so much, every VTK users in this forum. <br>
<br>
But I still have many questions on vtkDelaunay2D:<br>
<br>
Q1. how can I remove some discarded points by SetTolerance(double)? For<br>
example the following picture show a meshing result of triangulation<br>
(vtkDelaunay2D). But as you can see, some points which were not used for<br>
triangulation still exist inside triangles.<br>
<br>
</tt><tt><a href="http://www.nabble.com/file/p22365659/Untitled-1.jpeg">http://www.nabble.com/file/p22365659/Untitled-1.jpeg</a></tt><tt>&nbsp; &nbsp; <br>
<br>
<br>
How can I remove this? <br>
<br>
<br>
Q2. what is the different between BoundingTriangleOn and Off? The main<br>
difference I observed is that when I use &quot;On,&quot; mesh lost colors which I<br>
assigned as scalars and mesh's color becomes gray scale. &nbsp;Do you know why?<br>
<br>
&quot;Boolean controls whether bounding triangulation points (and associated<br>
triangles) are included in the output. (These are introduced as an initial<br>
triangulation to begin the triangulation process. This feature is nice for<br>
debugging output.) &quot;<br>
<br>
I cannot understand what this means due to lack of knowledge for<br>
triangulation. <br>
<br>
-- <br>
View this message in context:<br>
</tt><tt><a href="http://www.nabble.com/vtkDelaunay2D%3A-How-to-remove-discarded-points-tp2236">http://www.nabble.com/vtkDelaunay2D%3A-How-to-remove-discarded-points-tp2236</a></tt><tt><br>
5659p22365659.html<br>
Sent from the VTK - Users mailing list archive at Nabble.com.<br>
<br>
<br>
<br>
------------------------------<br>
<br>
Message: 10<br>
Date: Thu, 5 Mar 2009 22:24:41 -0800 (PST)<br>
From: Dasan &lt;janghang@gmail.com&gt;<br>
Subject: Re: [vtkusers] vtkDelaunay2D: How to remove discarded points<br>
To: vtkusers@vtk.org<br>
Message-ID: &lt;22366840.post@talk.nabble.com&gt;<br>
Content-Type: text/plain; charset=us-ascii<br>
<br>
<br>
Q1 may be a wrong question. These points would not be the discarded points<br>
from SetTolerance. Anyway, Does anybody know why tkDelaunay2D displays<br>
points? I expect to see only mesh!<br>
<br>
 <br>
<br>
<br>
<br>
Dasan wrote:<br>
&gt; <br>
&gt; Dear VTK Users,<br>
&gt; <br>
&gt; Thanks to many people in this forum, I could use vtkDelaunay2D to<br>
&gt; construct mesh from point cloud. &nbsp;Thank you so much, every VTK users in<br>
&gt; this forum. <br>
&gt; <br>
&gt; But I still have many questions on vtkDelaunay2D:<br>
&gt; <br>
&gt; Q1. how can I remove some discarded points by SetTolerance(double)? For<br>
&gt; example the following picture show a meshing result of triangulation<br>
&gt; (vtkDelaunay2D). But as you can see, some points which were not used for<br>
&gt; triangulation still exist inside triangles.<br>
&gt; <br>
&gt; &nbsp;</tt><tt><a href="http://www.nabble.com/file/p22365659/Untitled-1.jpeg">http://www.nabble.com/file/p22365659/Untitled-1.jpeg</a></tt><tt>&nbsp; &nbsp; <br>
&gt; <br>
&gt; <br>
&gt; How can I remove this? <br>
&gt; <br>
&gt; <br>
&gt; Q2. what is the different between BoundingTriangleOn and Off? The main<br>
&gt; difference I observed is that when I use &quot;On,&quot; mesh lost colors which I<br>
&gt; assigned as scalars and mesh's color becomes gray scale. &nbsp;Do you know why?<br>
&gt; <br>
&gt; &quot;Boolean controls whether bounding triangulation points (and associated<br>
&gt; triangles) are included in the output. (These are introduced as an initial<br>
&gt; triangulation to begin the triangulation process. This feature is nice for<br>
&gt; debugging output.) &quot;<br>
&gt; <br>
&gt; I cannot understand what this means due to lack of knowledge for<br>
&gt; triangulation. <br>
&gt; <br>
&gt; <br>
<br>
-- <br>
View this message in context:<br>
</tt><tt><a href="http://www.nabble.com/vtkDelaunay2D%3A-How-to-remove-discarded-points-tp2236">http://www.nabble.com/vtkDelaunay2D%3A-How-to-remove-discarded-points-tp2236</a></tt><tt><br>
5659p22366840.html<br>
Sent from the VTK - Users mailing list archive at Nabble.com.<br>
<br>
<br>
<br>
------------------------------<br>
<br>
Message: 11<br>
Date: Fri, 06 Mar 2009 09:38:48 +0100<br>
From: &lt;wassim_belhadj@topnet.tn&gt;<br>
Subject: Re: [vtkusers] [VtkEdge] vtkColorTransferFunction of lungs<br>
To: Lisa Avila &lt;lisa.avila@kitware.com&gt;<br>
Cc: vtkusers@vtk.org, vtkedge@vtkedge.org<br>
Message-ID: &lt;7b2f6d37c1bdf2c5c9ab48b121c8875f@pop.topnet.tn&gt;<br>
Content-Type: text/plain; charset=&quot;UTF-8&quot;<br>
<br>
Hello Lisa,<br>
<br>
Thank you ver much for your answer I'm pleased :-)<br>
<br>
My data is CT and &nbsp;I'm &nbsp;using Volume rendering techniques to view the<br>
lungs.<br>
<br>
I used Volview &nbsp;and I &nbsp;find a good transfer function <br>
(vtkPiecewiseFunction) for Lungs but I have not found the appropriate<br>
vtkColorTransferFunction. I would be delighted if you can help me.<br>
<br>
I currently developing an interactive GUI for adjusting transfer function<br>
nodes.<br>
<br>
I have left the interaction with Gradient opacity function as this function<br>
is not supported yet by the GPU ray cast mapper.<br>
<br>
Can you tell me please when this feature will be added to VTKEdge?<br>
<br>
I' m using VTKEdge/VTK CVS and Qt4<br>
<br>
Best Regards,<br>
BELHADJ wassim<br>
<br>
<br>
<br>
 &nbsp; <br>
<br>
<br>
<br>
<br>
<br>
 <br>
<br>
<br>
<br>
On Thu, 05 Mar 2009 17:05:39 -0500, Lisa Avila &lt;lisa.avila@kitware.com&gt;<br>
wrote:<br>
&gt; Hello Wassim,<br>
&gt; <br>
&gt; Are you trying to view the lungs as a surface, or transparently? I <br>
&gt; assume your data is CT?<br>
&gt; <br>
&gt; The best way to &quot;find&quot; a good transfer function is with an interactive <br>
&gt; GUI for adjusting transfer function nodes. You could try downloading the <br>
&gt; trial version of VolView 3 from the Kitware web site, adjust the <br>
&gt; transfer function interactively until you find a good one, then copy out <br>
&gt; the node values into your program. That is what I almost always do when <br>
&gt; I have to do a task like this - there is usually enough variation in <br>
&gt; scan parameters that you can't really say &quot;this hardcoded function will <br>
&gt; be the best to show lungs in all CT data&quot;. Would be nice if that worked.<br>
&gt; :-)<br>
&gt; <br>
&gt; If you are still having problems after trying something interactive to <br>
&gt; help you, let me know.<br>
&gt; <br>
&gt; Lisa<br>
&gt; <br>
&gt; <br>
&gt; wassim_belhadj@topnet.tn wrote:<br>
&gt;&gt; Hi,<br>
&gt;&gt;<br>
&gt;&gt; I'm using VTk/VTKEdge for lungs Volume rendering.<br>
&gt;&gt;<br>
&gt;&gt; My problem is that I have not found the appropriate<br>
&gt;&gt; vtkColorTransferFunction of lungs. <br>
&gt;&gt;<br>
&gt;&gt; Most of the examples provide vtkColorTransferFunction and <br>
&gt;&gt; vtkPiecewiseFunction functions of muscles, bones, skin but not lungs.<br>
&gt;&gt;<br>
&gt;&gt; Bellow my transfer function that I used to display Lungs.<br>
&gt;&gt;<br>
&gt;&gt;                  opacityFun-&gt;AddPoint(-960,0.0);<br>
&gt;&gt;                  opacityFun-&gt;AddPoint(-950, 1.0);<br>
&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;opacityFun-&gt;AddPoint(-550,1.0 );<br>
&gt;&gt;                  opacityFun-&gt;AddPoint(-500,0.3 );<br>
&gt;&gt;                  opacityFun-&gt;AddPoint(-450, 0.0);<br>
&gt;&gt;                  opacityFun-&gt;AddPoint(-300, 0.0);<br>
&gt;&gt; <br>
&gt;&gt; Can someone HELP ME?<br>
&gt;&gt;<br>
&gt;&gt; Best regards,<br>
&gt;&gt; wassim<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; VtkEdge mailing list<br>
&gt;&gt; VtkEdge@vtkedge.org<br>
&gt;&gt; </tt><tt><a href="http://public.kitware.com/cgi-bin/mailman/listinfo/vtkedge">http://public.kitware.com/cgi-bin/mailman/listinfo/vtkedge</a></tt><tt><br>
&gt;&gt;<br>
&gt;&gt;<br>
<br>
<br>
------------------------------<br>
<br>
Message: 12<br>
Date: Fri, 6 Mar 2009 10:04:16 +0000 (GMT)<br>
From: Nour Mestiri &lt;nourmestiri@yahoo.fr&gt;<br>
Subject: [vtkusers] Help! How to extract the surface of a volume?<br>
To: vtk &lt;vtkusers@vtk.org&gt;<br>
Message-ID: &lt;816277.95540.qm@web28216.mail.ukl.yahoo.com&gt;<br>
Content-Type: text/plain; charset=&quot;iso-8859-1&quot;<br>
<br>
Hi all vtk users.<br>
I need your help. In?fact, i have a sequence of 2D 'segmented' images which<br>
represent the bones of the human head.<br>
When i make the reconstruction, i obtain the whole volume of the skull.. My<br>
objective is to keep just the extern surface of this skull and eliminate all<br>
the rest.<br>
I used the marching cubes algorithm but?the result is not exactly what i<br>
want!!!<br>
Is it possible to extract the surface of the volume? If yes, how to do?<br>
Thank you.<br>
<br>
<br>
<br>
 &nbsp; &nbsp; &nbsp;<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL:<br>
&lt;</tt><tt><a href="http://www.vtk.org/pipermail/vtkusers/attachments/20090306/1a2466bb/attachm">http://www.vtk.org/pipermail/vtkusers/attachments/20090306/1a2466bb/attachm</a></tt><tt><br>
ent-0001.htm&gt;<br>
<br>
------------------------------<br>
<br>
Message: 13<br>
Date: Fri, 06 Mar 2009 13:44:22 +0100<br>
From: Eugen Wintersberger &lt;eugen.wintersberger@jku.at&gt;<br>
Subject: [vtkusers] Exodus II problem<br>
To: vtkusers@vtk.org<br>
Message-ID: &lt;1236343462.9124.14.camel@wheeler.hlphys.uni-linz.ac.at&gt;<br>
Content-Type: text/plain<br>
<br>
Hi there<br>
 &nbsp;I am fairly new to VTK and would like to know how to extract data from<br>
an ExodusII file using vktExodusReader using the python bindings of VTK.<br>
I have stored displacement data in the file from a finite element<br>
simulation. This data appears as a 3 component vector in the ExodusII<br>
file. The data structure should be an unstructured grid (tets).<br>
<br>
I tried the following (most probably naive) approach<br>
<br>
import vtk<br>
<br>
d = vtk.vtkExodusReader()<br>
d.SetFileName(&quot;bilayer_result.e&quot;)<br>
d.UpdateInformation()<br>
d.SetPointArrayStatus(&quot;u&quot;,1)<br>
d.AddFilterOutputVar(&quot;u&quot;)<br>
d.Update()<br>
print d<br>
<br>
uc = vtk.vtkExtractVectorComponents()<br>
uc.SetInputConnection(d.GetOutputPort())<br>
<br>
unfortunately vtkExtractVectorComponents complains that the input is no<br>
vector.<br>
<br>
Has anyone an idea how to get this working?<br>
<br>
thanks in advance<br>
 &nbsp; Eugen<br>
<br>
PS: sorry for bothering you with such a maybe stupid question but I<br>
could not find a useful example for vtkExodusReader anywhere on the web.<br>
-- <br>
--------------------------------------------<br>
| &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;|<br>
| Dipl. Ing. Eugen Wintersberger &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |<br>
| Department of semicondutor physics &nbsp; &nbsp; &nbsp; |<br>
| University of Linz &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |<br>
| Altenbergerstrasse 69 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;|<br>
| A-4040 Linz &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;|<br>
| Austria &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;|<br>
| &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;|<br>
| Mobile.: +43 664 3112861 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |<br>
| Tel.: +43 732 2468 9605 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;|<br>
| E-Mail.: eugen.wintersberger@jku.at &nbsp; &nbsp; &nbsp;|<br>
| Skype: eugen20056221 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |<br>
| ICQ: 214418739, nickname: thot &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |<br>
| &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;|<br>
--------------------------------------------<br>
<br>
<br>
<br>
------------------------------<br>
<br>
Message: 14<br>
Date: Fri, 06 Mar 2009 14:45:22 +0100<br>
From: Eugen Wintersberger &lt;eugen.wintersberger@jku.at&gt;<br>
Subject: [vtkusers] Confusion about GetOutputPort and GetOutput<br>
To: vtkusers &lt;vtkusers@vtk.org&gt;<br>
Message-ID: &lt;1236347122.9124.19.camel@wheeler.hlphys.uni-linz.ac.at&gt;<br>
Content-Type: text/plain<br>
<br>
Hi there <br>
 &nbsp;its me again. I just had a look in &quot;The Visualization Toolkit ....&quot;.<br>
The book states that the usage of SetInput and GetOutput is highly<br>
discouraged for VTK versions higher then 5.0. I use VTK 5.0.4 on an<br>
Ubuntu 8.10 AMD64 installation. If I write my program using SetInput -<br>
GetOutput I can easily access different attribute data from a dataset by<br>
passing the index of the attribute data as an argument to the GetOutput<br>
method of a dataset class. If I use, as recommended the GetOutputPort I<br>
cannot use the index of attribute data. Can anyone explain me why this<br>
is in this way or do I make a conceptual mistake?<br>
<br>
regards<br>
 &nbsp; Eugen<br>
-- <br>
--------------------------------------------<br>
| &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;|<br>
| Dipl. Ing. Eugen Wintersberger &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |<br>
| Department of semicondutor physics &nbsp; &nbsp; &nbsp; |<br>
| University of Linz &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |<br>
| Altenbergerstrasse 69 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;|<br>
| A-4040 Linz &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;|<br>
| Austria &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;|<br>
| &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;|<br>
| Mobile.: +43 664 3112861 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |<br>
| Tel.: +43 732 2468 9605 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;|<br>
| E-Mail.: eugen.wintersberger@jku.at &nbsp; &nbsp; &nbsp;|<br>
| Skype: eugen20056221 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |<br>
| ICQ: 214418739, nickname: thot &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; |<br>
| &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;|<br>
--------------------------------------------<br>
<br>
<br>
<br>
------------------------------<br>
<br>
Message: 15<br>
Date: Fri, 6 Mar 2009 09:29:18 -0600<br>
From: Ashish Singh &lt;mrasingh@gmail.com&gt;<br>
Subject: [vtkusers] vtk debug leaks<br>
To: VTK &lt;vtkusers@vtk.org&gt;<br>
Message-ID:<br>
                 &lt;e275438e0903060729l44fb6fecs2aa326105717ee17@mail.gmail.com&gt;<br>
Content-Type: text/plain; charset=&quot;iso-8859-1&quot;<br>
<br>
Hi,<br>
<br>
I am trying to compile and run the example 'Simpleview' at location:<br>
Vtksource/Examples/GUI/Qt/SimpleView and am getting a lot of vtk debug leak<br>
errors. The code compiles and runs fine. But when I close the application, I<br>
get the vtk debug errors. I am attaching a snapshot of the errors that I<br>
get. My environment is as follows:<br>
<br>
OS: Windows XP Pro x64<br>
VTK version: 5.0.3, built with VTK_DEBUG_LEAKS:BOOL=ON,<br>
VTK_USE_GUISUPPORT:BOOL=ON, VTK_USE_QVTK:BOOL=ON<br>
Qt version:4.2.3<br>
CMake version:2.4.6<br>
Microsoft Visual Studio 2005<br>
<br>
Can anyone please suggest how to fix these errors?<br>
<br>
Thanks,<br>
Ashish<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL:<br>
&lt;</tt><tt><a href="http://www.vtk.org/pipermail/vtkusers/attachments/20090306/1a40fc66/attachm">http://www.vtk.org/pipermail/vtkusers/attachments/20090306/1a40fc66/attachm</a></tt><tt><br>
ent-0001.htm&gt;<br>
-------------- next part --------------<br>
A non-text attachment was scrubbed...<br>
Name: vtkdebugleaks.JPG<br>
Type: image/jpeg<br>
Size: 42441 bytes<br>
Desc: not available<br>
URL:<br>
&lt;</tt><tt><a href="http://www.vtk.org/pipermail/vtkusers/attachments/20090306/1a40fc66/attachm">http://www.vtk.org/pipermail/vtkusers/attachments/20090306/1a40fc66/attachm</a></tt><tt><br>
ent-0001.jpeg&gt;<br>
<br>
------------------------------<br>
<br>
Message: 16<br>
Date: Fri, 06 Mar 2009 08:42:15 -0700<br>
From: Clinton Stimpson &lt;clinton@elemtech.com&gt;<br>
Subject: Re: [vtkusers] vtk debug leaks<br>
To: Ashish Singh &lt;mrasingh@gmail.com&gt;<br>
Cc: VTK &lt;vtkusers@vtk.org&gt;<br>
Message-ID: &lt;49B14457.8040500@elemtech.com&gt;<br>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed<br>
<br>
<br>
Those leaks were fixed about 6 months ago. &nbsp;You can see the fixes in CVS.<br>
<br>
Clint<br>
<br>
Ashish Singh wrote:<br>
&gt; Hi,<br>
&gt;<br>
&gt; I am trying to compile and run the example 'Simpleview' at location: <br>
&gt; Vtksource/Examples/GUI/Qt/SimpleView and am getting a lot of vtk debug <br>
&gt; leak errors. The code compiles and runs fine. But when I close the <br>
&gt; application, I get the vtk debug errors. I am attaching a snapshot of <br>
&gt; the errors that I get. My environment is as follows:<br>
&gt;<br>
&gt; OS: Windows XP Pro x64<br>
&gt; VTK version: 5.0.3, built with VTK_DEBUG_LEAKS:BOOL=ON, <br>
&gt; VTK_USE_GUISUPPORT:BOOL=ON, VTK_USE_QVTK:BOOL=ON<br>
&gt; Qt version:4.2.3<br>
&gt; CMake version:2.4.6<br>
&gt; Microsoft Visual Studio 2005<br>
&gt;<br>
&gt; Can anyone please suggest how to fix these errors?<br>
&gt;<br>
&gt; Thanks,<br>
&gt; Ashish</tt><br>
<tt>&gt;<br>
&gt; ------------------------------------------------------------------------<br>
&gt;<br>
&gt;<br>
&gt; ------------------------------------------------------------------------<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; Powered by www.kitware.com<br>
&gt;<br>
&gt; Visit other Kitware open-source projects at<br>
</tt><tt><a href="http://www.kitware.com/opensource/opensource.html">http://www.kitware.com/opensource/opensource.html</a></tt><tt><br>
&gt;<br>
&gt; Please keep messages on-topic and check the VTK FAQ at:<br>
</tt><tt><a href="http://www.vtk.org/Wiki/VTK_FAQ">http://www.vtk.org/Wiki/VTK_FAQ</a></tt><tt><br>
&gt;<br>
&gt; Follow this link to subscribe/unsubscribe:<br>
&gt; </tt><tt><a href="http://www.vtk.org/mailman/listinfo/vtkusers">http://www.vtk.org/mailman/listinfo/vtkusers</a></tt><tt><br>
&gt; &nbsp; <br>
<br>
<br>
<br>
<br>
------------------------------<br>
<br>
Message: 17<br>
Date: Fri, 06 Mar 2009 10:39:35 -0500<br>
From: John Eke &lt;johne@annidis.com&gt;<br>
Subject: [vtkusers] Add ID to vtkImageActor<br>
To: VTK &lt;vtkusers@vtk.org&gt;<br>
Message-ID: &lt;49B143B7.3030406@annidis.com&gt;<br>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed<br>
<br>
Hi Guys,<br>
<br>
Whats the easiest way to get a vtkImageActor with an ID field? I tried <br>
inheritance, didn't work (maybe I didn't do it right). I tried creating <br>
a replica of vtkImageActor, and renaming it to something else. But with <br>
this, the New() method returns NULL<br>
<br>
Please help<br>
<br>
- John<br>
<br>
<br>
------------------------------<br>
<br>
Message: 18<br>
Date: Fri, 6 Mar 2009 16:47:33 +0100<br>
From: Mathieu Malaterre &lt;mathieu.malaterre@gmail.com&gt;<br>
Subject: Re: [vtkusers] Add ID to vtkImageActor<br>
To: John Eke &lt;johne@annidis.com&gt;<br>
Cc: VTK &lt;vtkusers@vtk.org&gt;<br>
Message-ID:<br>
                 &lt;bf0c3b3f0903060747wb1720dfv8e34df7ca4e93d11@mail.gmail.com&gt;<br>
Content-Type: text/plain; charset=ISO-8859-1<br>
<br>
On Fri, Mar 6, 2009 at 4:39 PM, John Eke &lt;johne@annidis.com&gt; wrote:<br>
&gt; Hi Guys,<br>
&gt;<br>
&gt; Whats the easiest way to get a vtkImageActor with an ID field? I tried<br>
&gt; inheritance, didn't work (maybe I didn't do it right). I tried creating a<br>
&gt; replica of vtkImageActor, and renaming it to something else. But with<br>
this,<br>
&gt; the New() method returns NULL<br>
<br>
I did not quite followed what you are trying to do, but you understand<br>
that vtkImageActor::New() returns a vtkOpenGLImageActor ?<br>
<br>
2cts<br>
-- <br>
Mathieu<br>
<br>
<br>
------------------------------<br>
<br>
Message: 19<br>
Date: Fri, 6 Mar 2009 09:51:34 -0600<br>
From: Ashish Singh &lt;mrasingh@gmail.com&gt;<br>
Subject: Re: [vtkusers] vtk debug leaks<br>
To: Clinton Stimpson &lt;clinton@elemtech.com&gt;, VTK &lt;vtkusers@vtk.org&gt;<br>
Message-ID:<br>
                 &lt;e275438e0903060751k31a562f0nb69515d201a9e1ad@mail.gmail.com&gt;<br>
Content-Type: text/plain; charset=&quot;iso-8859-1&quot;<br>
<br>
Thanks Clinton. Can you please point me to the CVS and guide me on searching<br>
for these fixes there?<br>
<br>
Thanks,<br>
Ashish<br>
<br>
On Fri, Mar 6, 2009 at 9:42 AM, Clinton Stimpson<br>
&lt;clinton@elemtech.com&gt;wrote:<br>
<br>
&gt;<br>
&gt; Those leaks were fixed about 6 months ago. &nbsp;You can see the fixes in CVS.<br>
&gt;<br>
&gt; Clint<br>
&gt;<br>
&gt; Ashish Singh wrote:<br>
&gt;<br>
&gt;&gt; Hi,<br>
&gt;&gt;<br>
&gt;&gt; I am trying to compile and run the example 'Simpleview' at location:<br>
&gt;&gt; Vtksource/Examples/GUI/Qt/SimpleView and am getting a lot of vtk debug<br>
leak<br>
&gt;&gt; errors. The code compiles and runs fine. But when I close the<br>
application, I<br>
&gt;&gt; get the vtk debug errors. I am attaching a snapshot of the errors that I<br>
&gt;&gt; get. My environment is as follows:<br>
&gt;&gt;<br>
&gt;&gt; OS: Windows XP Pro x64<br>
&gt;&gt; VTK version: 5.0.3, built with VTK_DEBUG_LEAKS:BOOL=ON,<br>
&gt;&gt; VTK_USE_GUISUPPORT:BOOL=ON, VTK_USE_QVTK:BOOL=ON<br>
&gt;&gt; Qt version:4.2.3<br>
&gt;&gt; CMake version:2.4.6<br>
&gt;&gt; Microsoft Visual Studio 2005<br>
&gt;&gt;<br>
&gt;&gt; Can anyone please suggest how to fix these errors?<br>
&gt;&gt;<br>
&gt;&gt; Thanks,<br>
&gt;&gt; Ashish<br>
&gt;&gt;<br>
&gt;&gt; ------------------------------------------------------------------------<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; ------------------------------------------------------------------------<br>
&gt;&gt;<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; Powered by www.kitware.com<br>
&gt;&gt;<br>
&gt;&gt; Visit other Kitware open-source projects at<br>
&gt;&gt; </tt><tt><a href="http://www.kitware.com/opensource/opensource.html">http://www.kitware.com/opensource/opensource.html</a></tt><tt><br>
&gt;&gt;<br>
&gt;&gt; Please keep messages on-topic and check the VTK FAQ at:<br>
&gt;&gt; </tt><tt><a href="http://www.vtk.org/Wiki/VTK_FAQ">http://www.vtk.org/Wiki/VTK_FAQ</a></tt><tt><br>
&gt;&gt;<br>
&gt;&gt; Follow this link to subscribe/unsubscribe:<br>
&gt;&gt; </tt><tt><a href="http://www.vtk.org/mailman/listinfo/vtkusers">http://www.vtk.org/mailman/listinfo/vtkusers</a></tt><tt><br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL:<br>
&lt;</tt><tt><a href="http://www.vtk.org/pipermail/vtkusers/attachments/20090306/ad6762d5/attachm">http://www.vtk.org/pipermail/vtkusers/attachments/20090306/ad6762d5/attachm</a></tt><tt><br>
ent-0001.htm&gt;<br>
<br>
------------------------------<br>
<br>
Message: 20<br>
Date: Fri, 06 Mar 2009 11:02:34 -0500<br>
From: John Eke &lt;johne@annidis.com&gt;<br>
Subject: Re: [vtkusers] Add ID to vtkImageActor<br>
To: Mathieu Malaterre &lt;mathieu.malaterre@gmail.com&gt;<br>
Cc: VTK &lt;vtkusers@vtk.org&gt;<br>
Message-ID: &lt;49B1491A.1050600@annidis.com&gt;<br>
Content-Type: text/plain; charset=&quot;us-ascii&quot;<br>
<br>
An HTML attachment was scrubbed...<br>
URL:<br>
&lt;</tt><tt><a href="http://www.vtk.org/pipermail/vtkusers/attachments/20090306/72ff89be/attachm">http://www.vtk.org/pipermail/vtkusers/attachments/20090306/72ff89be/attachm</a></tt><tt><br>
ent-0001.htm&gt;<br>
<br>
------------------------------<br>
<br>
Message: 21<br>
Date: Fri, 6 Mar 2009 11:01:50 -0500<br>
From: John Drescher &lt;drescherjm@gmail.com&gt;<br>
Subject: Re: [vtkusers] vtk debug leaks<br>
To: Ashish Singh &lt;mrasingh@gmail.com&gt;<br>
Cc: VTK &lt;vtkusers@vtk.org&gt;, Clinton Stimpson &lt;clinton@elemtech.com&gt;<br>
Message-ID:<br>
                 &lt;387ee2020903060801u1fef8e22t38f10e2e3edee10@mail.gmail.com&gt;<br>
Content-Type: text/plain; charset=ISO-8859-1<br>
<br>
On Fri, Mar 6, 2009 at 10:51 AM, Ashish Singh &lt;mrasingh@gmail.com&gt; wrote:<br>
&gt; Thanks Clinton. Can you please point me to the CVS and guide me on<br>
searching<br>
&gt; for these fixes there?<br>
&gt;<br>
</tt><tt><a href="http://www.vtk.org/VTK/resources/software.html#cvs">http://www.vtk.org/VTK/resources/software.html#cvs</a></tt><tt><br>
<br>
John<br>
<br>
<br>
------------------------------<br>
<br>
Message: 22<br>
Date: Fri, 6 Mar 2009 11:11:40 -0500<br>
From: Mathieu Coursolle &lt;mcoursolle@rogue-research.com&gt;<br>
Subject: Re: [vtkusers] Add ID to vtkImageActor<br>
To: John Eke &lt;johne@annidis.com&gt;<br>
Cc: VTK &lt;vtkusers@vtk.org&gt;<br>
Message-ID: &lt;5245297C-5D18-4137-88D2-E3C332214A7F@rogue-research.com&gt;<br>
Content-Type: text/plain; charset=&quot;us-ascii&quot;; Format=&quot;flowed&quot;;<br>
                 DelSp=&quot;yes&quot;<br>
<br>
Hi,<br>
<br>
If I understand correctly, you are trying to easily retrieve a &nbsp;<br>
vtkActor instance based on some key.<br>
I usually use a map where the key is a unique ID, and the value the &nbsp;<br>
actual vtkActor.<br>
That way I can retrieve quickly the actor associated with a key. &nbsp;<br>
However, this has the inconvenient<br>
of maintaining that map to make sure you remove actors which are &nbsp;<br>
deleted, and add newly created<br>
actors.<br>
<br>
Hope this helps,<br>
<br>
Mathieu<br>
<br>
____________________<br>
Mathieu Coursolle, M.Ing.                                  <br>
Rogue Research Inc.<br>
www.rogue-research.com<br>
<br>
On 6-Mar-09, at 11:02 AM, John Eke wrote:<br>
<br>
&gt; What I am trying to do is add a string Id as a private member to a &nbsp;<br>
&gt; vtkImageActor. I have a scenario where I am inserting multiple &nbsp;<br>
&gt; vtkImageActors into a renderer... and I want to selectively enable &nbsp;<br>
&gt; and disable them. The only way I can forsee doing that is if each &nbsp;<br>
&gt; image actor had an ID. That way I can iterate through the actors, &nbsp;<br>
&gt; find the one with the ID I am looking for, then enable it.<br>
&gt;<br>
&gt; Is there a better way to do this? If not how can I add the ID field &nbsp;<br>
&gt; to an image actor?<br>
&gt;<br>
&gt; I hope this clears things up<br>
&gt;<br>
&gt; - John<br>
&gt;<br>
&gt; Mathieu Malaterre wrote:<br>
&gt;&gt;<br>
&gt;&gt; On Fri, Mar 6, 2009 at 4:39 PM, John Eke &lt;johne@annidis.com&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt;&gt; Hi Guys,<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Whats the easiest way to get a vtkImageActor with an ID field? I &nbsp;<br>
&gt;&gt;&gt; tried<br>
&gt;&gt;&gt; inheritance, didn't work (maybe I didn't do it right). I tried &nbsp;<br>
&gt;&gt;&gt; creating a<br>
&gt;&gt;&gt; replica of vtkImageActor, and renaming it to something else. But &nbsp;<br>
&gt;&gt;&gt; with this,<br>
&gt;&gt;&gt; the New() method returns NULL<br>
&gt;&gt;&gt;<br>
&gt;&gt; I did not quite followed what you are trying to do, but you &nbsp;<br>
&gt;&gt; understand<br>
&gt;&gt; that vtkImageActor::New() returns a vtkOpenGLImageActor ?<br>
&gt;&gt;<br>
&gt;&gt; 2cts<br>
&gt;&gt;<br>
&gt;<br>
&gt; -- <br>
&gt; INFORMAL COMMUNICATION - The statements within this email and &nbsp;<br>
&gt; attachments if any, may be founded on partial knowledge, incorrect &nbsp;<br>
&gt; information, or incomplete understanding of the issues and should &nbsp;<br>
&gt; not be accorded the probity or status of a formal evidentiary &nbsp;<br>
&gt; deposition.<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; CONFIDENTIALITY STATEMENT - This e-mail and &nbsp;attachments if any, may &nbsp;<br>
&gt; contain confidential or privileged information. If you are not the &nbsp;<br>
&gt; intended recipient, please delete it, notify me immediately by reply &nbsp;<br>
&gt; e-mail, and be advised that you are not permitted to read, use, &nbsp;<br>
&gt; disclose, copy, or distribute it or its contents.<br>
&gt; _______________________________________________<br>
&gt; Powered by www.kitware.com<br>
&gt;<br>
&gt; Visit other Kitware open-source projects at<br>
</tt><tt><a href="http://www.kitware.com/opensource/opensource.html">http://www.kitware.com/opensource/opensource.html</a></tt><tt><br>
&gt;<br>
&gt; Please keep messages on-topic and check the VTK FAQ at:<br>
</tt><tt><a href="http://www.vtk.org/Wiki/VTK_FAQ">http://www.vtk.org/Wiki/VTK_FAQ</a></tt><tt><br>
&gt;<br>
&gt; Follow this link to subscribe/unsubscribe:<br>
&gt; </tt><tt><a href="http://www.vtk.org/mailman/listinfo/vtkusers">http://www.vtk.org/mailman/listinfo/vtkusers</a></tt><tt><br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL:<br>
&lt;</tt><tt><a href="http://www.vtk.org/pipermail/vtkusers/attachments/20090306/d8f11bbe/attachm">http://www.vtk.org/pipermail/vtkusers/attachments/20090306/d8f11bbe/attachm</a></tt><tt><br>
ent.htm&gt;<br>
<br>
------------------------------<br>
<br>
_______________________________________________<br>
vtkusers mailing list<br>
vtkusers@vtk.org<br>
</tt><tt><a href="http://www.vtk.org/mailman/listinfo/vtkusers">http://www.vtk.org/mailman/listinfo/vtkusers</a></tt><tt><br>
<br>
<br>
End of vtkusers Digest, Vol 59, Issue 6<br>
***************************************<br>
<br>
_______________________________________________<br>
Powered by www.kitware.com<br>
<br>
Visit other Kitware open-source projects at </tt><tt><a href="http://www.kitware.com/opensource/opensource.html">http://www.kitware.com/opensource/opensource.html</a></tt><tt><br>
<br>
Please keep messages on-topic and check the VTK FAQ at: </tt><tt><a href="http://www.vtk.org/Wiki/VTK_FAQ">http://www.vtk.org/Wiki/VTK_FAQ</a></tt><tt><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
</tt><tt><a href="http://www.vtk.org/mailman/listinfo/vtkusers">http://www.vtk.org/mailman/listinfo/vtkusers</a></tt><tt><br>
</tt><br>
</body></html>