Re: [Paraview] 3D Tv

2016-07-08 Thread Christophe Bourcier
Hi, We have used Paraview on some 3D HD TV connected via HDMI to a laptop. You have to set the stereo in Paraview to SplitViewPortHorizontal. It is not as nice as CrystalEyes since you loose half of the horizontal resolution. To display in UHD on the TV from your link you will need a graphic card

[Paraview] "X Error: BadMatch" when loading state file with OpenGL2 rendering on Fedora 18

2016-06-29 Thread Christophe Bourcier
Hi, I have an issue when loading state files on Fedora 18 with Paraview compiled with the new OpenGL2 rendering backend, while there is no error with the legacy OpenGL backend. Steps to reproduce the issue: - Create a cylinder - File/Save state: cylinder.pvsm - File/Load state: load cylinder.pvsm

[Paraview] Plot on sorted lines with Cell Array

2016-02-10 Thread Christophe Bourcier
Dear Paraview users, I want to plot a field on cells with the same discretization as my mesh. So I don't use Plot over line, but Plot on sorted lines with 2 slices to get the polyline to plot data on. It works well with a field on nodes, but I can't get a result with a field on cell. Of course if

[Paraview] Rescale to data range on a field's component in python in Paraview 4.3.1

2015-05-18 Thread Christophe Bourcier
Hi, In 4.2.0, the following code was enough to display a field's component instead of its magnitude and set the right scalar bar: lookup_table = GetColorTransferFunction('SIGM') #change array component used for coloring id_comp = 2 lookup_table.VectorComponent = id_comp lookup_table.VectorMode =

[Paraview] vtk.vtkPoints.SetData()

2015-04-27 Thread Christophe Bourcier
Hi Magician, Since Paraview 4.2, you have to use column_stack instead of hstack to create a multi-component field. See this thread http://public.kitware.com/pipermail/paraview/2015-April/033756.html Christophe ___ Powered by www.kitware.com Visit other

Re: [Paraview] Fwd: Python Calculator: create a multi-component field

2015-04-02 Thread Christophe Bourcier
how to contribute to the tex documentation. > It is definitely very welcome. > > Finally, I am not sure that I understand the comment about the potential > bug. Can you please give the steps to reproduce? > > Thanks, > -berk > > On Thu, Apr 2, 2015 at 5:23 AM, Christophe

[Paraview] Fwd: Python Calculator: create a multi-component field

2015-04-02 Thread Christophe Bourcier
Dear Paraview folks, It seems there is a mistake in the Paraview User's Guide at the end of the section Python Calculator. To create a multi-component field from multiple scalar fields, hstack used to work before Paraview 4.2.0. But since Paraview 4.2.0, we must use numpy.column_stack. This chan