Hi,<br><br>at the moment I&#39;m doing my master thesis and I&#39;m fighting with the following problem: I&#39;d like to visualize a set of voxels (coordinates x,y,z and one material property of the voxel, which can be chosen, are given). In the following there&#39;s an small example of the data I&#39;d like to import in PV:<br>
<br>x    y    z     material<br>0    0    0    1<br>0    1    0    0<br>0    1    1    2<br>1    0    0    1<br>1    1    1    3<br>1    2    3    0<br><br>For the first try I chose an VTK unstructured grid file; it has been imported in PV as &quot;VTK unstructured grid&quot;. In the following I created a glyph with boxes. That works fine, but afterwards I tried to do a clip and the major problem came up: within the clip the boxes are empty - only the walls of the boxes are displayed. It&#39;s mandatory that the boxes are filled.<br>
<br>I also tried another solution: import of the VTK-file as a VTK particle file, the glyph function works also fine and the clip function produces filled (I suppose so...hard to say) boxes, but the information / material property is lost. I appended the VTK-file at the end.<br>
<br>It will be perfect if someone might help me and knows a solution to get solid/filled boxes including the scalar material property. Is this an issue of the VTK-file? In case of - where&#39;s my mistake or what should I change? The export format of my data is quite flexible...<br>
<br>Thanks a lot in advance for hints, have a nice evening,<br>Karl<br><br><br><br>% ==================== EXAMPLE VTK-File =========================<br><br>&lt;VTKFile type=&quot;UnstructuredGrid&quot; version=&quot;0.1&quot; byte_order=&quot;LittleEndian&quot;&gt;<br>
  &lt;UnstructuredGrid&gt;<br>    &lt;Piece NumberOfPoints=&quot;10&quot; NumberOfCells=&quot;0&quot;&gt;<br>      &lt;Points&gt;<br>        &lt;DataArray name=&quot;Position&quot; type=&quot;Float32&quot; NumberOfComponents=&quot;3&quot;<br>
 format=&quot;ascii&quot;&gt;<br>        0 0 0<br>        1 1 1<br>        0 0 1<br>        1 0 1<br>        0 1 1<br>        0 0 1<br>        1 1 2<br>        1 2 1<br>        1 2 2<br>        2 2 2<br>        &lt;/DataArray&gt;<br>
      &lt;/Points&gt;<br>      &lt;PointData  Vectors=&quot;vector&quot;&gt;<br>    &lt;DataArray type=&quot;Float32&quot; Name=&quot;Structure&quot; format=&quot;ascii&quot;&gt;<br>        0<br>        1<br>        2<br>
        3<br>        1<br>        2<br>        2<br>        3<br>        0<br>        0<br>        &lt;/DataArray&gt;<br>      &lt;/PointData&gt;<br>      &lt;Cells&gt;<br>        &lt;DataArray type=&quot;UInt8&quot; Name=&quot;types&quot; format=&quot;ascii&quot;&gt;<br>
        &lt;/DataArray&gt;<br>      &lt;/Cells&gt;<br>    &lt;/Piece&gt;<br>  &lt;/UnstructuredGrid&gt;<br> &lt;/VTKFile&gt;<br>%==============================================================<br><br><br><br>