

PARAVIEW VIEW NORMAL TO SLICE CODE
Here are some code snippets which maybe could help you. Hi Polli, I am not sure what you really want to do but in principle you have to write a Python Macro as following and run it via pvpython. RenderView1 = GetActiveViewOrCreate(‘RenderView’)Ī2LEBY1Display = Show(a2LEBY, renderView1)Ī2LEBY1Display.ColorArrayName = Paraview.simple._DisableFirstRenderCameraReset()

I tried on the following code but it failed.įrom paraview.simple import * disable automatic camera reset on ‘Show’ The results I googled are mostly on Python itself but not on Paraview script. RenderView1.CameraFocalPoint = ĭo you have any links that I can refer as a tutorial? I am new in Python script in Paraview. ReaderDisplay.ColorArrayName = Ī1NTX1Display = Show(a1NTX1, renderView1)Ī1NTX1Display.ColorArrayName = Ī1NTY1Display = Show(a1NTY1, renderView1)Ī1NTY1Display.ColorArrayName = Ī2LEBX1Display = Show(a2LEBX1, renderView1)Ī2LEBX1Display.ColorArrayName = ReaderDisplay = Show(reader, renderView1) RenderView1 = GetActiveViewOrCreate('RenderView') My code… paraview.simple._DisableFirstRenderCameraReset() Is there any better way that I can loop the process automatically on a huge dataset? It is tedious to do the process individually. But when I placed a number of dataset, it couldnt extract the coordinates exactly on the surface. I could run the data and collect the points coordinates one by one using Macros. I set the slice filter as the customize filter.

I applied slice x normal and y normal on my 3D data to get a set of points coordinates.
