<div dir="ltr"><div class="gmail_quote"><div dir="ltr"><span style="font-size:12.8px">Hi,</span><div style="font-size:12.8px"><br></div><div style="font-size:12.8px"> I am new to vtk. I am using Activiz. I created multiple lines using vtkLine and display them using vtkActor. Now i want to draw line on 2D points calculated from the 3D Line Points. I want to know all the pixels of 3D lines from where my lines is passed. Below is my code.</div><div style="font-size:12.8px"><br></div><div style="font-size:12.8px"><div>vtkPoints points = vtkPoints.New();</div><div>for (int i = 0; i < point.Count; i++)</div><div>points.InsertNextPoint(x, y, z);</div></div><div style="font-size:12.8px"><br></div><div style="font-size:12.8px"><div>vtkCellArray lines = vtkCellArray.New();</div><div>for (int i = 0; i < point.Count-1; i++)</div><div>{</div><div>  vtkLine line = vtkLine.New();</div><div>  line.GetPointIds().SetId(0, i);</div><div>  line.GetPointIds().SetId(1, i + 1);</div><div>  lines.InsertNextCell(line);</div><div>}</div></div><div style="font-size:12.8px"><br></div><div style="font-size:12.8px"><div>vtkPolyData linesPolyData = vtkPolyData.New();</div><div>linesPolyData.SetPoints(points<wbr>);</div><div>linesPolyData.SetLines(lines);<br></div><div>linesPolyData.Update();</div></div><div style="font-size:12.8px"><br></div><div style="font-size:12.8px"><div>vtkPolyDataMapper mapper = vtkPolyDataMapper.New();</div><div>mapper.SetInput(linesPolyData)<wbr>;</div><div>mapper.Update();</div><div><br></div><div>vtkActor actor = vtkActor.New();</div><div>actor.SetMapper(mapper);</div><div>actor.GetProperty().SetLineWid<wbr>th(10);</div><div>actor.GetProperty().SetColor(2<wbr>55, 255, 0);</div><div>renderer.AddActor(actor);</div></div><div style="font-size:12.8px"><br></div><div style="font-size:12.8px"><br></div><div style="font-size:12.8px">Now i want to know the pixels on the lines. Please help me. Thanks in advance. :) :)</div><div style="font-size:12.8px"><br></div><div style="font-size:12.8px"><br></div><div style="font-size:12.8px">Thanks,</div><div style="font-size:12.8px"><br></div><div style="font-size:12.8px">Pankaj</div></div>
</div><br></div>