Hi, 
I am trying to implement isosurface visualisation in Unity using VTK.
Since Unity mesh's number of vertices is limited to 65553, a large surface needs to be split  up into smaller chunks. 
I used vtkOBBDicer, vtkThreshold, and vtkGeometryFilter to spit and extract the polydata.
However, the resulting polydata from the extraction process lost the color array element.
Is there any solution to split up the vtkPolyData and keep the color accordingly?


Thank you in advance.

<img src="http://vtk.1045678.n5.nabble.com/file/n5743711/partitionedgameobject.png" border="0" alt="The result of the isosurface, the largest surface is white because the color array has gone when it is split into chunks."/>

This is the method I use to return the vtkPolyData chunks (it uses Activiz C# wrapper).

<i>public static List<vtkPolyData> CreateGroups(vtkPolyData poly)
    {
                vtkOBBDicer dicer = vtkOBBDicer.New ();
                vtkThreshold th = vtkThreshold.New ();
                vtkGeometryFilter geo = vtkGeometryFilter.New ();
                List<vtkPolyData> polys = new List<vtkPolyData> ();

                dicer.SetInput (poly);
                dicer.SetDiceModeToSpecifiedNumberOfPieces ();
                dicer.SetNumberOfPointsPerPiece((int) VERTICESMAX);
                dicer.Update ();
                th.SetInput (dicer.GetOutput ());
                th.AllScalarsOff ();
               th.SetInputArrayToProcess(0, 0, 0, 0, "vtkOBBDicer_GroupIds");
               geo.SetInputConnection (th.GetOutputPort ());

                for(int i = 0; i < dicer.GetNumberOfActualPieces(); i ++){
                        th.ThresholdBetween (i, i);     
                        th.Update ();
                        geo.Update ();
                        vtkPolyData pol = vtkPolyData.New();
                       pol.DeepCopy(geo.GetOutput());
                      polys.Add (pol);
                }

                return polys;
        }</i>

Cheers,
Kadek

        
        
        
<br/><hr align="left" width="300" />
View this message in context: <a href="http://vtk.1045678.n5.nabble.com/Preserve-the-color-of-a-vtkPolyData-after-it-is-split-by-vtkOBBDicer-tp5743711.html">Preserve the color of a vtkPolyData after it is split by vtkOBBDicer</a><br/>
Sent from the <a href="http://vtk.1045678.n5.nabble.com/VTK-Users-f1224199.html">VTK - Users mailing list archive</a> at Nabble.com.<br/>