<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta http-equiv="content-type"
 content="text/html; charset=ISO-8859-1">
</head>
<body bgcolor="#ffffff" text="#000000">
<font size="-1"><font face="Verdana">Hi everybody,<br>
<br>
I solved the previous problem using vtkCellLocator. for who's
interested, given a vtkPolyData source the code is:<br>
<br>
<br>
&nbsp;&nbsp; // the cell locator<br>
&nbsp;&nbsp; vtkCellLocator* locator = vtkCellLocator::New();<br>
&nbsp;&nbsp; locator-&gt;SetDataSet(source);<br>
&nbsp;&nbsp; locator-&gt;CacheCellBoundsOn();<br>
&nbsp;&nbsp; locator-&gt;AutomaticOn();<br>
&nbsp;&nbsp; locator-&gt;BuildLocator();<br>
<br>
&nbsp;&nbsp; // init the interesection parameters<br>
&nbsp;&nbsp; double tolerance = 0.001, lineParameter, intersect[3], paraCoord[3];<br>
&nbsp;&nbsp; double startPnt[3] = {// add coordinates of start point here}, <br>
&nbsp;&nbsp;&nbsp; endPnt[3] = {</font></font><font size="-1"><font face="Verdana">//
add coordinates of end point here</font></font><font size="-1"><font
 face="Verdana">};<br>
&nbsp;&nbsp; int sub_id;<br>
<br>
<br>
&nbsp;&nbsp; if(locator-&gt;IntersectWithLine(startPnt, endPnt, tolerance,
lineParameter, intersect, paraCoord, sub_id))<br>
&nbsp;&nbsp; {<br>
&nbsp;&nbsp;&nbsp; printf("Point intersection: (%.2f, %.2f, %.2f)\n", intersect[0],
intersect[1], intersect[2]);<br>
&nbsp;&nbsp;&nbsp; // do something with the intersection point<br>
&nbsp;&nbsp; }<br>
<br>
<br>
&nbsp;&nbsp; locator-&gt;Delete();<br>
<br>
<br>
now I have a new problem (as you can see I'm not a big expert of vtk...)<br>
The vtkPolyData comes from a textured model. Is there a way to get
easily the colour of the intersection point (considering that probably
it is not a vertex of the mesh)?<br>
<br>
regards,<br>
a.<br>
<br>
<br>
</font></font>
<pre class="moz-signature" cols="72">-- 
Andrea Bottino
Politecnico di Torino, DAUIN
Corso Duca degli Abruzzi, 24
10129 Torino ITALY
Tel +39 011 5647175 / Fax +39 011 5647099.
<a class="moz-txt-link-freetext" href="http://www.polito.it/cgvg">http://www.polito.it/cgvg</a>
</pre>
</body>
</html>