Hi everybody,<br><br>I am experimenting with the new Python interface (via pvpython). I am trying to change the input of a representation. It seems it does not work. Following code should first show:<br><ul><li>A &quot;shrinked&quot; sphere - OK,
</li><li>A solid cone - Wrong, &quot;shrinked&quot; cone instead.</li></ul>I can not redirect the input of the representation but the input of the shrink filter can be changed. Is this an expected behavior?<br><br>The example:
<br><br><span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;sphere = pvsm.sources.SphereSource()</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;cone = pvsm.sources.ConeSource
()</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;shrink = pvsm.filters.ShrinkFilter()</span><br style="font-family: courier new,monospace;"><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;shrink.Input = sphere</span><br style="font-family: courier new,monospace;"><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">
&nbsp;&nbsp;&nbsp;&nbsp;view = pvsm.CreateRenderView()</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;rep = pvsm.CreateRepresentation(shrink, view)</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;view.ResetCamera()</span><br style="font-family: courier new,monospace;"><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">
&nbsp;&nbsp;&nbsp;&nbsp;for i in range(100):</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;view.StillRender()</span><br style="font-family: courier new,monospace;"><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;shrink.Input = cone</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;rep.Input = cone</span><br style="font-family: courier new,monospace;">
<br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">&nbsp;&nbsp;&nbsp;&nbsp;for i in range(100):</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;view.StillRender()</span><br><br>Any suggestions will be most appreciated. It is crucial for my work to be able to do the redirection ...<br><br>Thanks,<br>Milan.<br>