<html>
Hi <font face="Times New Roman, Times">Joćo -<br>
<br>
<blockquote type=cite class=cite cite>Where I can file the package
AttributeChanges.zip?</font></blockquote><br>
If you look in the VTK FAQ item 6.7 you'll find the link to:<br>
<br>
<font color="#0000FF"><u><a href="http://public.kitware.com/VTK/files/misc/Upgrading.zip" eudora="autourl">http://public.kitware.com/VTK/files/misc/Upgrading.zip<br>
<br>
</a></u></font>which contains what you are looking for. It also contains
a Perl script that does these conversions for you (works ~85% of the
time).<br>
<br>
<blockquote type=cite class=cite cite><font face="Times New Roman, Times">What
class should I use in VTK 4 instead of vtkFloatPoints (of VTK
3.2)?</font></blockquote><br>
You use vtkPoints. The default type is float. You can also do
SetDataTypeToFloat(), etc. to set the data type to the desired
type.<br>
<br>
vtkPoints *pts = vtkPoints::New();<br>
pts->SetDataTypeToFloat();<br>
pts->SetNumberOfPoints(npts);<br>
etc.<br>
<br>
Will</html>