Did you do a SetDimensions(x,y,z) on your structured grid?<br><br><br><div><span class="gmail_quote">On 9/18/07, <b class="gmail_sendername">XViz</b> &lt;<a href="mailto:D_E@ukr.net">D_E@ukr.net</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">



<div style="font-size: 12pt; font-family: Tahoma;">
<div>Thank you vry much for answer. I constructed&nbsp; vtkStructuredGrid and 
setted setpoints and getpointdata-&gt;setscalars().</div>
<div>But what to do NEXT??? I tried to put it into vtkContourFilter, but it 
doesnt&#39;t work - it says I have a lot of points but no tuples!</div><span class="q">
<div>&nbsp;</div>
<div>&nbsp;</div>
<div>XViz, <a href="mailto:%3C%21--AID_FROMADDRESS_BEGIN--%3ED_E@ukr.net%3C%21--AID_FROMADDRESS_END--%3E" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">D_E@ukr.net</a></div></span>
<div>2007-09-18 </div>
<blockquote style="border-left: 2px solid rgb(0, 0, 0); padding-right: 0px; padding-left: 5px; margin-left: 5px; margin-right: 0px;">
  <div style="font-weight: normal; font-size: 9pt; line-height: normal; font-style: normal; font-variant: normal;">----- 
  Получено следующее ----- </div>
  <div style="background: rgb(228, 228, 228) none repeat scroll 0% 50%; font-weight: normal; font-size: 9pt; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; line-height: normal; font-style: normal; font-variant: normal;">
<b>От:</b> 
  <a href="mailto:shriram.uc@gmail.com" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">Shriram Iyer</a> </div>
  <div style="font-weight: normal; font-size: 9pt; line-height: normal; font-style: normal; font-variant: normal;"><b>Получатель:</b> 
  <a href="mailto:D_E@ukr.net" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">D_E</a> </div>
  <div style="font-weight: normal; font-size: 9pt; line-height: normal; font-style: normal; font-variant: normal;"><b>Время:</b> 
  2007-09-18, 00:46:30</div>
  <div style="font-weight: normal; font-size: 9pt; line-height: normal; font-style: normal; font-variant: normal;"><b>Тема:</b> 
  Re: [vtkusers] Drawing complex 3D surface.</div><div><span class="e" id="q_11517dd7010719f7_3">
  <div><br></div>
  <div></div>
  <div></div>
  <div>Use vtkStructuredGrid and set the dimensions of the grid correctly using 
  vtkStructuredGrid-&gt;SetDimensions(x,y,z). <br>Then do setpoints and 
  getpointdata-&gt;setscalars()<br><br>-shriram<br><br>
  <div><span class="gmail_quote">On 9/17/07, <b class="gmail_sendername">XViz</b> 
  &lt;<a href="mailto:D_E@ukr.net" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">D_E@ukr.net</a>&gt; wrote:</span>
  <blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Hello 
    everyone,<br><br>I started to work with VTK because it is much faster and 
    powerfull than TeeChart8 I used before. But VTK is more complex, so I&#39;ll be 
    very thankful if somebody could advise me how to complete the task described 
    bellow. <br><br>I&#39;ve got a task to build isosurfaces from images that 
    intersect ech other: the seccond plane is inclined on 5 degrees to the 
    first, the third to 5 degrees to the seccond and so on - for 360 degrees. So 
    I have cyinder fill with planes. All planes consist from rectangular grid of 
    float type points. I converted this data to unstructured points (actually I 
    can convert it to complex structured grid, but I don&#39;t see how could it help 
    me - I didn&#39;t mannage to visualisate even two separate cylinders). The 
    isosurface I need to visualizate will consist from many 
    connected/unconnected region. I tried many filters, look through both VTK 
    books and many examples, but I cannot plot it ! :( <br>With 
    vtkSurfaceReconstructionFilter it is something very strange and not right. 
    The only thing that workes is to manully set unstructured grid from points 
    with close intencity value and then put it to vtkGaussianSplatter ant plot 
    it like in finance.cxx example. But it is not real picture, because all 
    points are shrinked by vtkGaussianSplatter.<br>Here is the code I assume 
    should work to draw my data (unfortunatelly in doesn&#39;t - I don&#39;t know 
    why):<br><br>// Pl3D[i].x(,y,z,V) - is my point number i - x,y,z - 
    coordinates, V - values - all float type. This array I did manually 
    before.<br>&nbsp;&nbsp;vtkPoints *points = 
    vtkPoints::New();<br>&nbsp;&nbsp;vtkIntArray *newScalars = 
    vtkIntArray::New(); <br>// Then I fill arrays with point and scalars in the 
    loop incrising id for both arrays for each new point<br>&nbsp;&nbsp;int 
    po=0;<br>&nbsp;&nbsp;for (int i=0; i&lt;NumFull; i++)<br>// If I want to set 
    manually intencity for single surface I put here: if (Pl3D[i].V&gt;LowLevel 
    &amp;&amp; Pl3D[i].V&lt;HighLevel) <br>&nbsp;&nbsp;{ 
    points-&gt;InsertPoint(po,Pl3D[i].x,Pl3D[i].y,Pl3D[i].z);<br>&nbsp;&nbsp;&nbsp;&nbsp;newScalars-&gt;InsertValue(po,Pl3D[i].V);<br>&nbsp;&nbsp;&nbsp;&nbsp;po++;<br>&nbsp;&nbsp;};<br>&nbsp;&nbsp;vtkUnstructuredGrid 
    *PdataSet = 
    vtkUnstructuredGrid::New();<br>&nbsp;&nbsp;&nbsp;&nbsp;PdataSet-&gt;SetPoints(points); 
    <br>&nbsp;&nbsp;&nbsp;&nbsp;PdataSet-&gt;GetPointData()-&gt;SetScalars(newScalars);<br>//I 
    putted here different filters, but everithing (but vtkGaussianSplatter) 
    didn&#39;t work<br>&nbsp;&nbsp;vtkContourFilter *cf = 
    vtkContourFilter::New();<br>&nbsp;&nbsp;&nbsp;&nbsp;cf-&gt;SetInputConnection(someFilter-&gt;GetOutputPort()); 
    <br>//I tried to change SetValue for GenerateValues, or to set all values in 
    newScalars=1 and 
    SetValue(0,1)<br>&nbsp;&nbsp;&nbsp;&nbsp;cf-&gt;SetValue(0,0.0);<br>&nbsp;&nbsp;vtkPolyDataMapper 
    *map = 
    vtkPolyDataMapper::New();<br>&nbsp;&nbsp;&nbsp;&nbsp;map-&gt;SetInputConnection(cf-&gt;GetOutputPort()); 
    <br>&nbsp;&nbsp;vtkActor *popActor = 
    vtkActor::New();<br>&nbsp;&nbsp;&nbsp;&nbsp;popActor-&gt;SetMapper(map);<br><br><br>As 
    I wrote I tried to set all Scalar values for manyally selected iso-points to 
    1, or didn&#39;t set it. I tried to put my points to vtkPolyData-&gt;SetPoints() 
    and use some filters... <br><br>I&#39;m trying to get this thing working for two 
    weeks already. :(<br>It will be very nice if somebody could help 
    me!<br>Thank you very much!<br><br><br>XViz, <a href="mailto:D_E@ukr.net" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">D_E@ukr.net</a><br>2007-09-17 
    <br><br>_______________________________________________<br>This is the 
    private VTK discussion list.<br>Please keep messages on-topic. Check the FAQ 
    at: <a href="http://www.vtk.org/Wiki/VTK_FAQ" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">http://www.vtk.org/Wiki/VTK_FAQ 
    </a><br>Follow this link to subscribe/unsubscribe:<br><a href="http://www.vtk.org/mailman/listinfo/vtkusers" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">http://www.vtk.org/mailman/listinfo/vtkusers
</a><br><br></blockquote></div><br></div></span></div></blockquote></div>
</blockquote></div><br>