<div dir="ltr">I was starting to answer your previous email but I'm glad you figure it out.<div><br></div><div>But I'm not sure what it your new question.</div><div>1) How to add data to the polydata?</div><div>2) How to render an array from a polydata for both points and cells?</div><div><br></div><div>Seb</div><div><br></div><div>PS: You could create an issue for that topic on vtk.js is you want too.</div></div><br><div class="gmail_quote"><div dir="ltr">On Tue, Jul 17, 2018 at 7:39 AM marf <<a href="mailto:marvin.huber@basf.com">marvin.huber@basf.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Ok, I solved it now, by taking the connectivityarray and translating it into<br>
a format for polyData which kind of looks like this <br>
<br>
numberOfPoints idOfPoint1 idOfPoint2 idOfPoint3 numberOfPoints idOfPoint1<br>
idOfPoint2 idOfPoint3<br>
<br>
e.g. <br>
polys = [3, 0, 2, 1, 3, 1, 2, 3, 3......] (this would only be triangles)<br>
points = [0.1, 0.5, 9, 0.5]<br>
<br>
Then I passed this to the polydata via<br>
<br>
polydata.getPolys().setData(polys);<br>
polydata.getPoints().setData(points);<br>
<br>
and provided it as the modeloutput with<br>
model.output[0] = polydata;<br>
<br>
So this worked nicely, but there is also more information that I would have<br>
to display by coloring cells or points, can someone help with that please?<br>
<br>
<br>
<br>
--<br>
Sent from: <a href="http://vtk.1045678.n5.nabble.com/VTK-Users-f1224199.html" rel="noreferrer" target="_blank">http://vtk.1045678.n5.nabble.com/VTK-Users-f1224199.html</a><br>
_______________________________________________<br>
Powered by <a href="http://www.kitware.com" rel="noreferrer" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" rel="noreferrer" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
<br>
Please keep messages on-topic and check the VTK FAQ at: <a href="http://www.vtk.org/Wiki/VTK_FAQ" rel="noreferrer" target="_blank">http://www.vtk.org/Wiki/VTK_FAQ</a><br>
<br>
Search the list archives at: <a href="http://markmail.org/search/?q=vtkusers" rel="noreferrer" target="_blank">http://markmail.org/search/?q=vtkusers</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="https://public.kitware.com/mailman/listinfo/vtkusers" rel="noreferrer" target="_blank">https://public.kitware.com/mailman/listinfo/vtkusers</a><br>
</blockquote></div>