It looks like there is a memory issue somewhere. We will track it. However, I have to say that creating 1000 individual line sources and 200 sphere sources, all of which have displays, is not a common use case for ParaView or VTK and is not something that will be efficient anytime in the future. I suggest finding an alternative way of doing this. For example, it would be way more efficient to have 1 source that takes a list of point tuples and creates one vtkPolyData that has all of the lines. Same is true for spheres.
<br><br><div><span class="gmail_quote">On 6/13/07, <b class="gmail_sendername">Utkarsh Ayachit</b> &lt;<a href="mailto:utkarsh.ayachit@kitware.com">utkarsh.ayachit@kitware.com</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;">
Looks like there&#39;s some leak or something in the python display creation<br>part. We&#39;ll take a look at it.<br><br>Utkarsh<br><br>Fabian Braennstroem wrote:<br>&gt; Hi Utkarsh,<br>&gt;<br>&gt; I just tried the new 
3.0.1 with no succes:<br>&gt;<br>&gt;&nbsp;&nbsp;./paraview-3.0.1-Linux-x86/bin/paraview<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [13 Jun 9:13pm]<br>&gt; terminate called after throwing an instance of &#39;std::bad_alloc&#39;
<br>&gt;&nbsp;&nbsp; what():&nbsp;&nbsp;St9bad_alloc<br>&gt; Abort<br>&gt; 72.305 user, 1.383 system, 2:08.63 real<br>&gt;<br>&gt; Greetings!<br>&gt; Fabian<br>&gt;<br>&gt; Utkarsh Ayachit schrieb am 06/12/2007 07:21 PM:<br>&gt;&gt; Are you using 
3.0.0 beta?<br>&gt;&gt;<br>&gt;&gt; Utkarsh<br>&gt;&gt;<br>&gt;&gt; Fabian Braennstroem wrote:<br>&gt;&gt;&gt; Hi Utkarsh,<br>&gt;&gt;&gt;<br>&gt;&gt;&gt; I tried you script, unfortunately it does not seem to work for me as
<br>&gt;&gt;&gt; wanted; I get:<br>&gt;&gt;&gt;<br>&gt;&gt;&gt; Display could not locate the pqPipelineSource object&nbsp;&nbsp;for the input<br>&gt;&gt;&gt; proxy.<br>&gt;&gt;&gt; Could not locate the server on which the new source was added.
<br>&gt;&gt;&gt;<br>&gt;&gt;&gt; Do I do something wrong? I use version 3.0.0.<br>&gt;&gt;&gt;<br>&gt;&gt;&gt; Greetings!<br>&gt;&gt;&gt; Fabian<br>&gt;&gt;&gt;<br>&gt;&gt;&gt; Utkarsh Ayachit schrieb am 06/12/2007 02:48 PM:
<br>&gt;&gt;&gt;&gt; Hmm weird,<br>&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt; Here&#39;s my script to create a 1000 spheres. It seems to work just fine<br>&gt;&gt;&gt;&gt; for me.<br>&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt; Can you post your script?
<br>&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt; import paraview<br>&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt; # Locate the view to which we&#39;ll add the &quot;display&quot;. All views are<br>&gt;&gt;&gt;&gt; # registered in the group &quot;view_modules&quot; with the proxy manager.
<br>&gt;&gt;&gt;&gt; pxm = paraview.pyProxyManager()<br>&gt;&gt;&gt;&gt; iter = pxm.group_iter(&quot;view_modules&quot;);<br>&gt;&gt;&gt;&gt; activeView = None<br>&gt;&gt;&gt;&gt; for proxy in iter:<br>&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;if 
proxy.IsA(&quot;vtkSMRenderModuleProxy&quot;):<br>&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;activeView = proxy<br>&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;break<br>&gt;&gt;&gt;&gt; if activeView:<br>&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;for z in range (0, 10):<br>&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;for y in range (0, 10):
<br>&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;for cc in range (0, 10):<br>&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;# create a display for the source in the active view.<br>&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;sphere = \<br>&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;paraview.CreateProxy
(&quot;sources&quot;,&quot;SphereSource&quot;,&quot;sources&quot;,<br>&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;sphere.%d.%d.%d&quot;% (cc,y,z))<br>&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;sphere.SetCenter(cc, y, z);<br>&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
sphere.UpdateVTKObjects();<br>&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;disp = paraview.CreateDisplay(sphere, activeView);<br>&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;activeView.StillRender();<br>&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt; Utkarsh<br>&gt;&gt;&gt;&gt;
<br>&gt;&gt;&gt;&gt; Robert Maynard wrote:<br>&gt;&gt;&gt;&gt;&gt; Thank you for the reply. I tried something similar to this but by doing<br>&gt;&gt;&gt;&gt;&gt; it this way:<br>&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt; renModule = 
paraview.GetRenderModule()<br>&gt;&gt;&gt;&gt;&gt; paraview.CreateDisplay(sphere, renModule):<br>&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt; The major problem I get is that for both of these ways to add the item<br>&gt;&gt;&gt;&gt;&gt; to a Display proxy, is that while it works nicely for a small dataset.
<br>&gt;&gt;&gt;&gt;&gt; When I try to create with python 200 sphere&#39;s, and 1000 lines. The python<br>&gt;&gt;&gt;&gt;&gt; parser slows right down, and really slows down the render. It seems that<br>&gt;&gt;&gt;&gt;&gt; this
<br>&gt;&gt;&gt;&gt;&gt; way extra display proxies are created, becuase when I try to save the<br>&gt;&gt;&gt;&gt;&gt; state, or close paraview<br>&gt;&gt;&gt;&gt;&gt; I get the following error.<br>&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; The program &#39;modpython&#39; received an X Window System error.<br>&gt;&gt;&gt;&gt;&gt; This probably reflects a bug in the program.<br>&gt;&gt;&gt;&gt;&gt; The error was &#39;BadWindow (invalid Window parameter)&#39;.
<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp; (Details: serial 366766 error_code 3 request_code 15 minor_code 0)<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp; (Note to programmers: normally, X errors are reported asynchronously;<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;that is, you will receive the error a while after causing it.
<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;To debug your program, run it with the --sync command line<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;option to change this behavior. You can then get a meaningful<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;backtrace from your debugger if you break on the gdk_x_error() function.)
<br>&gt;&gt;&gt;&gt;&gt; vtkDebugLeaks has detected LEAKS!<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMSourceProxy&quot; has 1645 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMPWriterProxy&quot; has 8 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkPVAxesActor&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkFixedPointVolumeRayCastCompositeHelper&quot; has 129 instances<br>&gt;&gt;&gt;&gt;&gt; still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkOpenGLScalarsToColorsPainter&quot; has 273 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;pqPendingDisplayUndoElement&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkXOpenGLRenderWindow&quot; has 1 instance still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMAxesProxy&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMMaterialLoaderProxy&quot; has 129 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;pqOptions&quot; has 1 instance still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMSimpleIntInformationHelper&quot; has 13 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMTimeStepsInformationHelper&quot; has 17 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMEnumerationDomain&quot; has 1884 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMPropertyModificationUndoElement&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMLODDisplayProxy&quot; has 129 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSelfConnection&quot; has 2 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkCellTypes&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkPVXMLElement&quot; has 29275 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkCellData&quot; has 1494 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMInputProperty&quot; has 1948 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkClientServerInterpreter&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkCollection&quot; has 7512 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMDoubleVectorProperty&quot; has 4086 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMExtentDomain&quot; has 2 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkFrustumCoverageCuller&quot; has 3 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkPointsPainter&quot; has 138 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkCursor3D&quot; has 4 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkInformationVector&quot; has 8430 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMDataTypeDomain&quot; has 1283 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkPVFileInformationHelper&quot; has 2 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMIntArrayInformationHelper&quot; has 2 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkPerspectiveTransform&quot; has 6 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkPVTrackballZoom&quot; has 3 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMMultiViewRenderModuleProxy&quot; has 1 instance still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkOpenGLPainterDeviceAdapter&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkPVTrackballRoll&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkPVOpenGLExtensionsInformation&quot; has 1 instance still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMWriterProxy&quot; has 12 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkQuad&quot; has 11 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkPointData&quot; has 1623 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkOpenGLDisplayListPainter&quot; has 273 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMXDMFInformationHelper&quot; has 6 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkVectorText&quot; has 3 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkProperty2D&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkPVUpdateSuppressor&quot; has 387 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkPriorityQueue&quot; has 129 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkPointPlacer&quot; has 4 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkWidgetEventTranslator&quot; has 4 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkCacheSizeKeeper&quot; has 1 instance still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkPolygonsPainter&quot; has 138 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkCompositeDataPipeline&quot; has 1420 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkFixedPointRayCastImage&quot; has 129 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkTrivialProducer&quot; has 277 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkProp3DCollection&quot; has 4 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkQuadricClustering&quot; has 129 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMArraySelectionInformationHelper&quot; has 139 instances still<br>&gt;&gt;&gt;&gt;&gt; around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkMatrix4x4&quot; has 3316 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkFeatureEdges&quot; has 129 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSphericalDirectionEncoder&quot; has 129 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkPVMain&quot; has 1 instance still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;pqStateLoader&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMFixedTypeDomain&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkCoordinate&quot; has 11 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkBox&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMFileListDomain&quot; has 104 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMProxyGroupDomain&quot; has 3509 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMExtractLocationsProxy&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkFollower&quot; has 3 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSimpleTransform&quot; has 21 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkDataSetSurfaceFilter&quot; has 129 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkPVLODVolume&quot; has 129 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMStringVectorProperty&quot; has 1637 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkFiniteDifferenceGradientEstimator&quot; has 129 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkDummyController&quot; has 2 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkEventQtSlotConnect&quot; has 716 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMDoubleRangeDomain&quot; has 3888 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMProxyRegisterUndoElement&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkPoints&quot; has 644 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkIntArray&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkEncodedGradientShader&quot; has 129 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkInformation&quot; has 23589 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkUnstructuredGridVolumeRayCastMapper&quot; has 129 instances still<br>&gt;&gt;&gt;&gt;&gt; around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMUpdateSuppressorProxy&quot; has 388 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkLine&quot; has 46 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMUndoStackUndoSet&quot; has 908 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMProxyLink&quot; has 1420 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMCameraProxy&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;pqRenderViewProxy&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkActorCollection&quot; has 7 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkAxes&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMPart&quot; has 645 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkPointHandleRepresentation3D&quot; has 4 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkProcessModule&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkLightKit&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMViewModuleProxy&quot; has 1 instance still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMPVAnimationSceneProxy&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkPVClassNameInformation&quot; has 645 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkUnstructuredGridBunykRayCastFunction&quot; has 129 instances still
<br>&gt;&gt;&gt;&gt;&gt; around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMDomainIterator&quot; has 18999 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkVolumeCollection&quot; has 3 instances still around.<br>
&gt;&gt;&gt;&gt;&gt; Class &quot;vtkMultiThreader&quot; has 387 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkInteractorStyleRubberBandPick&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkPropCollection&quot; has 9 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMProxyManager&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkOpenGLCoincidentTopologyResolutionPainter&quot; has 273 instances<br>&gt;&gt;&gt;&gt;&gt; still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkOpenGLLightingPainter&quot; has 273 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkPolyData&quot; has 1491 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkGenericCell&quot; has 133 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkLookupTable&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkPVPythonInterpretor&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkUnstructuredGridVolumeZSweepMapper&quot; has 129 instances still
<br>&gt;&gt;&gt;&gt;&gt; around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkPVDataInformation&quot; has 2704 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMNumberOfGroupsDomain&quot; has 4 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSelfConnectionUndoSet&quot; has 925 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkCylinderSource&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMBooleanDomain&quot; has 4326 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMSummaryHelperProxy&quot; has 7 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkOrderedTriangulator&quot; has 129 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;pqOutputWindowAdapter&quot; has 1 instance still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkPVArrayInformation&quot; has 3345 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMUpdateInformationUndoElement&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkBiQuadraticQuad&quot; has 4 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkPiecewiseFunction&quot; has 5 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkOpenGLRayCastImageDisplayHelper&quot; has 387 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkPainterPolyDataMapper&quot; has 273 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkPVCompositeDataInformation&quot; has 2833 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkHexahedron&quot; has 2 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkActor2D&quot; has 1 instance still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkPropPicker&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkPVLODPartDisplayInformation&quot; has 129 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkPVOptionsXMLParser&quot; has 1 instance still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkTriQuadraticHexahedron&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkOpenGLCamera&quot; has 3 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkPVServerInformation&quot; has 1 instance still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMArraySelectionDomain&quot; has 137 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkOpenGLActor&quot; has 146 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkLineWidget2&quot; has 1 instance still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMProxyListDomain&quot; has 11 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMFieldDataDomain&quot; has 3 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkIdList&quot; has 369 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkWorldPointPicker&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;ProcessModuleGUIHelper&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkQuadraticLinearQuad&quot; has 2 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMPropertyLink&quot; has 266 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkConeSource&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkEmptyCell&quot; has 133 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkTStripsPainter&quot; has 138 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkOpenGLProjectedTetrahedraMapper&quot; has 129 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkObserverMediator&quot; has 1 instance still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkDoubleArray&quot; has 783 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkInformationDoubleValue&quot; has 138 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkMatrixToLinearTransform&quot; has 132 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkDefaultPainter&quot; has 273 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkAlgorithmOutput&quot; has 937 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkCullerCollection&quot; has 3 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkDataSetTriangleFilter&quot; has 129 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkOpenGLRenderer&quot; has 3 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkCellCenterDepthSort&quot; has 129 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkInformationIntegerValue&quot; has 36597 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMInputArrayDomain&quot; has 28 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMShrunkContoursProxy&quot; has 1 instance still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkQuadraticTriangle&quot; has 2 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkOpenGLPolyDataMapper2D&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkOpenGLLight&quot; has 7 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkPVInteractorStyle&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMUndoStack&quot; has 2 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMArrayRangeDomain&quot; has 7 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMExtractSelectionProxy&quot; has 4 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMNumberOfPartsDomain&quot; has 2 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkBiQuadraticQuadraticHexahedron&quot; has 1 instance still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkUndoStack&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkCellArray&quot; has 147 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMProxyProperty&quot; has 2490 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMArrayListDomain&quot; has 1052 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMBoundsDomain&quot; has 14 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkUnstructuredGrid&quot; has 1 instance still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkQuadraticLinearWedge&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkRendererCollection&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkStandardPolyDataPainter&quot; has 552 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkFixedPointVolumeRayCastMapper&quot; has 129 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkFixedPointVolumeRayCastMIPHelper&quot; has 129 instances still around.<br>
&gt;&gt;&gt;&gt;&gt; Class &quot;vtkProcessModuleConnectionManager&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMStringListDomain&quot; has 144 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;pqProxyUnRegisterUndoElement&quot; has 1 instance still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;pqCloseViewUndoElement&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkPVRenderModuleHelper&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMSimpleStringInformationHelper&quot; has 11 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkHeap&quot; has 258 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkChooserPainter&quot; has 273 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMIntRangeDomain&quot; has 1661 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;pqHelperProxyRegisterUndoElement&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMProxy&quot; has 667 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkWedge&quot; has 2 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMSimpleDoubleInformationHelper&quot; has 8 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkPVGeometryFilter&quot; has 129 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMApplication&quot; has 1 instance still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkInformationStringValue&quot; has 1449 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkFloatArray&quot; has 1054 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkBiQuadraticQuadraticWedge&quot; has 1 instance still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkPVLODActor&quot; has 129 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkVolumeProperty&quot; has 129 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkInformationExecutivePortVectorValue&quot; has 661 instances still
<br>&gt;&gt;&gt;&gt;&gt; around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkPVDataSetAttributesInformation&quot; has 5666 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkIdTypeArray&quot; has 663 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;pqUndoStackBuilder&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMUndoRedoStateLoader&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkTransform&quot; has 1069 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSocketCollection&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMDocumentation&quot; has 7783 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkPVAxesWidget&quot; has 1 instance still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkPVFileInformation&quot; has 2 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkFixedPointVolumeRayCastCompositeShadeHelper&quot; has 129 instances<br>&gt;&gt;&gt;&gt;&gt; still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMNew3DWidgetProxy&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkTriangle&quot; has 15 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkEdgeTable&quot; has 129 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkOutlineSource&quot; has 131 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkOpenGLClipPlanesPainter&quot; has 273 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkCollectionIterator&quot; has 2 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkOpenGLHAVSVolumeMapper&quot; has 129 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkLineRepresentation&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkFieldData&quot; has 1497 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;pqSplitViewUndoElement&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkQuadraticQuad&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkLODProp3D&quot; has 129 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkFixedPointVolumeRayCastCompositeGOShadeHelper&quot; has 129<br>&gt;&gt;&gt;&gt;&gt; instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMTimeRangeInformationHelper&quot; has 2 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkPVAnimationScene&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkOpenGLProperty&quot; has 151 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMInteractionUndoStackBuilder&quot; has 1 instance still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkTrackballPan&quot; has 2 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMIntVectorProperty&quot; has 7770 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMProxyUnRegisterUndoElement&quot; has 1 instance still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMIdTypeVectorProperty&quot; has 14 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkLineSource&quot; has 3 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkInformationDoubleVectorValue&quot; has 1177 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkInformationKeyVectorValue&quot; has 777 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkUnsignedCharArray&quot; has 134 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkLightCollection&quot; has 3 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSphereSource&quot; has 131 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkEvent&quot; has 32 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkWidgetCallbackMapper&quot; has 4 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkKWProcessStatistics&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkLinesPainter&quot; has 138 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkPVGeometryInformation&quot; has 129 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkPVProgressHandler&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkStreamingDemandDrivenPipeline&quot; has 438 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMProperty&quot; has 1054 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMXDMFPropertyDomain&quot; has 2 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkCellPicker&quot; has 4 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkUpdateSuppressorPipeline&quot; has 387 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkOpenGLRepresentationPainter&quot; has 273 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkActor2DCollection&quot; has 3 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkGenericGeometryFilter&quot; has 129 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkHandleWidget&quot; has 3 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkTimerLog&quot; has 4211 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkSMLODRenderModuleProxy&quot; has 1 instance still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkFixedPointVolumeRayCastCompositeGOHelper&quot; has 129 instances<br>&gt;&gt;&gt;&gt;&gt; still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkCommand or subclass&quot; has 33652 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkQuadraticEdge&quot; has 13 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkMultiProcessControllerRMI&quot; has 2 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkInformationExecutivePortValue&quot; has 937 instances still around.
<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkUndoSet&quot; has 2 instances still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkPVGenericRenderWindowInteractor&quot; has 1 instance still around.<br>&gt;&gt;&gt;&gt;&gt; Class &quot;vtkPVTrackballRotate&quot; has 3 instances still around.
<br>&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt; This problem does not happen, if I do not add the objects to the display<br>&gt;&gt;&gt;&gt;&gt; proxy, than after the script is over, I manually click on each one, and
<br>&gt;&gt;&gt;&gt;&gt; turn on its visibility.<br>&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt; On 6/12/07, *Utkarsh Ayachit* &lt;<a href="mailto:utkarsh.ayachit@kitware.com">
utkarsh.ayachit@kitware.com</a><br>&gt;&gt;&gt;&gt;&gt; &lt;mailto:<a href="mailto:utkarsh.ayachit@kitware.com">utkarsh.ayachit@kitware.com</a>&gt;&gt; wrote:<br>&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; Hi Robert,
<br>&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; To make a source visible one needs to create what we call a &quot;display&quot;<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; for that source. &quot;Display&quot; is a proxy which encapsulates the
<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; vtkMapper,vtkActor etc. Once must create the display for the source and<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; then add it to the render module in which we want to &quot;see&quot; the source.<br>&gt;&gt;&gt;&gt;&gt;
<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; Here&#39;s the script that one can use to do the same:<br>&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; import paraview<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; sphere = paraview.CreateProxy(&quot;sources&quot;,&quot;SphereSource&quot;,&quot;sources&quot;)
<br>&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; # Locate the view to which we&#39;ll add the &quot;display&quot;. All views are<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; # registered in the group &quot;view_modules&quot; with the proxy manager.
<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; pxm = paraview.pyProxyManager()<br>&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; # Create a iterator that iterates over all proxies registered in<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; # a particular group.
<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; iter = pxm.group_iter(&quot;view_modules&quot;);<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; activeView = None<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; for proxy in iter:<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;# Locate a 3D render view.
<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if proxy.IsA(&quot;vtkSMRenderModuleProxy&quot;):<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;activeView = proxy<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;break<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; if activeView:<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;# create a display for the source in the active view.
<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;disp = paraview.CreateDisplay(sphere, activeView);<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;# Trigger a render.<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;activeView.StillRender();<br>&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; Utkarsh
<br>&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; Robert Maynard wrote:<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&gt; Currently I am stumped on how to turn on or off the visibility of<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; items
<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&gt; from<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&gt; inside the paraview console.<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&gt;<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&gt; Currently I am constructing Line and Sphere sources by doing
<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&gt; sphere = paraview.CreateProxy(&quot;sources&quot;,&quot;SphereSource&quot;,&quot;sources&quot;)<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&gt;<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&gt; But these always are constructed with their visibility turned off. I
<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&gt; have tried<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&gt; getting the properties of these objects using the vtkSMProxy<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&gt; ListMethods() but<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&gt; that does not list it.
<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&gt;<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&gt; What do I need to access to be able to control their visibility?<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&gt;<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&gt;<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&gt;
<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp; ------------------------------------------------------------------------<br>&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&gt;<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&gt; _______________________________________________
<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&gt; ParaView mailing list<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&gt; <a href="mailto:ParaView@paraview.org">ParaView@paraview.org</a> &lt;mailto:<a href="mailto:ParaView@paraview.org">ParaView@paraview.org
</a>&gt;<br>&gt;&gt;&gt;&gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&gt; <a href="http://www.paraview.org/mailman/listinfo/paraview">http://www.paraview.org/mailman/listinfo/paraview</a><br>&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt;&gt;<br>&gt;&gt;&gt;&gt; _______________________________________________
<br>&gt;&gt;&gt;&gt; ParaView mailing list<br>&gt;&gt;&gt;&gt; <a href="mailto:ParaView@paraview.org">ParaView@paraview.org</a><br>&gt;&gt;&gt;&gt; <a href="http://www.paraview.org/mailman/listinfo/paraview">http://www.paraview.org/mailman/listinfo/paraview
</a><br>&gt;&gt;&gt; _______________________________________________<br>&gt;&gt;&gt; ParaView mailing list<br>&gt;&gt;&gt; <a href="mailto:ParaView@paraview.org">ParaView@paraview.org</a><br>&gt;&gt;&gt; <a href="http://www.paraview.org/mailman/listinfo/paraview">
http://www.paraview.org/mailman/listinfo/paraview</a><br>&gt;&gt;&gt;<br>&gt;<br>_______________________________________________<br>ParaView mailing list<br><a href="mailto:ParaView@paraview.org">ParaView@paraview.org</a>
<br><a href="http://www.paraview.org/mailman/listinfo/paraview">http://www.paraview.org/mailman/listinfo/paraview</a><br></blockquote></div><br><br clear="all"><br>-- <br> Berk Geveci<br> Kitware Inc.<br> 28 Corporate Drive
<br> Clifton Park, NY, 12065