<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">

<head>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=us-ascii">
<meta name=Generator content="Microsoft Word 12 (filtered medium)">
<style>
<!--
 /* Font Definitions */
 @font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:Tahoma;
        panose-1:2 11 6 4 3 5 4 4 2 4;}
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        margin-bottom:.0001pt;
        font-size:12.0pt;
        font-family:"Times New Roman","serif";}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
p
        {mso-style-priority:99;
        mso-margin-top-alt:auto;
        margin-right:0cm;
        mso-margin-bottom-alt:auto;
        margin-left:0cm;
        font-size:12.0pt;
        font-family:"Times New Roman","serif";}
span.EmailStyle18
        {mso-style-type:personal-reply;
        font-family:"Calibri","sans-serif";
        color:#1F497D;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-size:10.0pt;}
@page WordSection1
        {size:612.0pt 792.0pt;
        margin:72.0pt 72.0pt 72.0pt 72.0pt;}
div.WordSection1
        {page:WordSection1;}
-->
</style>
<!--[if gte mso 9]><xml>
 <o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
 <o:shapelayout v:ext="edit">
  <o:idmap v:ext="edit" data="1" />
 </o:shapelayout></xml><![endif]-->
</head>

<body lang=EN-GB link=blue vlink=purple>

<div class=WordSection1>

<p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";
color:#1F497D'>You have shallow copied the point normals from the input to the
output. Then overwritten them in the output. And therefore have overwritten
them in the input too. so of course they look the same. Passdata just passes
the array pointers using a shallow copy<o:p></o:p></span></p>

<p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";
color:#1F497D'><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";
color:#1F497D'>Deepcopy the normals from input to output, then overwrite them.
Now you have different arrays for in and out.<o:p></o:p></span></p>

<p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";
color:#1F497D'><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";
color:#1F497D'>this is a very common mistake and your students will learn a great
deal about how the pipeline operates. And hopefully you will too!<o:p></o:p></span></p>

<p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";
color:#1F497D'><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";
color:#1F497D'>JB<o:p></o:p></span></p>

<p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";
color:#1F497D'><o:p>&nbsp;</o:p></span></p>

<div>

<div style='border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0cm 0cm 0cm'>

<p class=MsoNormal><b><span lang=EN-US style='font-size:10.0pt;font-family:
"Tahoma","sans-serif"'>From:</span></b><span lang=EN-US style='font-size:10.0pt;
font-family:"Tahoma","sans-serif"'> paraview-bounces@paraview.org
[mailto:paraview-bounces@paraview.org] <b>On Behalf Of </b>Fred Fred<br>
<b>Sent:</b> 06 October 2010 14:48<br>
<b>To:</b> paraview@paraview.org<br>
<b>Subject:</b> [Paraview] PassData() question<o:p></o:p></span></p>

</div>

</div>

<p class=MsoNormal><o:p>&nbsp;</o:p></p>

<p class=MsoNormal style='margin-bottom:12.0pt'><span style='font-size:10.0pt;
font-family:"Tahoma","sans-serif"'>Hello,<br>
I was just showing to my students how to write a very basic filter, for them to
concentrate on the different steps rather than on the algorithm itself but... my
example did not work!<br>
The filter was supposed just to withdraw the X components of the normal of a
PolyData and the students were asked to show a cylinder before and after the
filter so as to compare the shading.<br>
Looking at the code of the PassData() function, it seems that it really copies
everything but when I apply my filter, the shading is modified both in the
output and the input.<br>
So where is the problem and how should I do it?<br>
<br>
int vtkPbPassData::RequestData(<br>
&nbsp; vtkInformation *vtkNotUsed(request),<br>
&nbsp; vtkInformationVector **inputVector,<br>
&nbsp; vtkInformationVector *outputVector)<br>
{<br>
&nbsp; // get the info objects<br>
&nbsp; vtkInformation *inInfo = inputVector[0]-&gt;GetInformationObject(0);<br>
&nbsp; vtkInformation *outInfo = outputVector-&gt;GetInformationObject(0);<br>
<br>
&nbsp; // get the input and output<br>
&nbsp; vtkPolyData *input = vtkPolyData::SafeDownCast(<br>
&nbsp;&nbsp;&nbsp; inInfo-&gt;Get(vtkDataObject::DATA_OBJECT()));<br>
&nbsp; vtkPolyData *output = vtkPolyData::SafeDownCast(<br>
&nbsp;&nbsp;&nbsp; outInfo-&gt;Get(vtkDataObject::DATA_OBJECT()));<br>
<br>
&nbsp; // pass all associated data to output dataset<br>
&nbsp; output-&gt;CopyStructure(input);<br>
&nbsp; output-&gt;GetPointData()-&gt;PassData(input-&gt;GetPointData());<br>
&nbsp; output-&gt;GetFieldData()-&gt;PassData(input-&gt;GetFieldData());<br>
<br>
&nbsp; // modify the normals<br>
&nbsp; vtkPointData *pd = output-&gt;GetPointData();<br>
&nbsp; if (pd ==NULL) {<br>
&nbsp;&nbsp;&nbsp; vtkErrorMacro(&lt;&lt;&quot;No point data&quot;);<br>
&nbsp;&nbsp;&nbsp; return 1;<br>
&nbsp; }<br>
&nbsp; vtkFloatArray *norms = (vtkFloatArray *)pd-&gt;GetNormals();<br>
&nbsp; if (norms == NULL) {<br>
&nbsp;&nbsp;&nbsp; vtkErrorMacro(&lt;&lt;&quot;Normals must be defined for this
filter to work&quot;);<br>
&nbsp;&nbsp;&nbsp; return 1;<br>
&nbsp; }<br>
&nbsp; float *coords = norms-&gt;GetPointer(0);<br>
<br>
&nbsp; for (int i=0 ; i&lt;output-&gt;GetNumberOfPoints() ; i++,coords+=3)<br>
&nbsp;&nbsp;&nbsp; *coords = 0;<br>
<br>
&nbsp; return 1;<br>
}<o:p></o:p></span></p>

</div>

</body>

</html>