Re: [Paraview] Error building ParaView with OSMesa and Python

2013-01-09 Thread Ian Krukow
How can I find out, whether Unicode support is included? The function 'unicode' is working. Is that enough? Ian Am 08.01.2013 22:31, schrieb Utkarsh Ayachit: I wonder if the problem is because the Python on RedHat is not built with Unicode support. Can anyone confirm that? If so, I am

[Paraview] superbuild on Mac

2013-01-09 Thread Felipe Bordeu
I think there is an error in the page : http://paraview.org/Wiki/ParaView_Binaries I tried to download Xcode 4.3 for my mac 10.6.8 to build a plugin compatible with the official binaries. But Xcode 4.3 is only available for Lion. So my question is: The 3.98.0 binary for mac is really

Re: [Paraview] Error building ParaView with OSMesa and Python

2013-01-09 Thread Ian Krukow
Ok, I found the problem - and a solution. There are two versions of Python installed on the cluster, 2.4 and 2.7. CCMake automatically found Python 2.7, but there is obviously no libpython2.7.so, only libpython2.7.a. So CCMake took the library of Python 2.4, but everything else from Python

Re: [Paraview] superbuild on Mac

2013-01-09 Thread Sebastien Jourdain
Hi Felipe, You were right there was a slight issue on the page that we just fix. The computer on which we build on is a 10.7.3 but we definitely use the 10.6 SDK to allow the generated binaries to work from 10.6 to 10.8. Hope that helps, and thanks for reporting the issue. Seb On Wed, Jan 9,

Re: [Paraview] Error building ParaView with OSMesa and Python

2013-01-09 Thread Utkarsh Ayachit
Glad it's working. On Wed, Jan 9, 2013 at 7:54 AM, Ian Krukow i.kru...@tu-braunschweig.de wrote: Ok, I found the problem - and a solution. There are two versions of Python installed on the cluster, 2.4 and 2.7. CCMake automatically found Python 2.7, but there is obviously no libpython2.7.so,

[Paraview] Wintracker - VRPN - Paraview Headtracking problem

2013-01-09 Thread Emiliano Pastorelli
Hi all, I have a weird problem for which I can't really figure out a solution. I just wrote,between yesterday and today, my vrpn (first) server for the VR Space Wintracker III magnetic tracker (3 sensors). It's still somehow to be completed, but it's up and running, and at least the position data

Re: [Paraview] ParaView from git, make fail on OpenSUSE 12.2

2013-01-09 Thread Yumin Yuan
Hi Pei-Ying, Checking back this mailing list, it seems that you (and maybe only you because no other people has reported this) have been having this problem since 3.14.1, which makes me think this problem might be unique to your development environment. Since we don't have a system here like

Re: [Paraview] superbuild on Mac

2013-01-09 Thread Robert Maynard
It should be clear that the binaries are 64bit so they will not work on 32bit SnowLeopard machines. If you need a 32bit OSX build for legacy machines you will need to compile and build ParaView yourself. On Wed, Jan 9, 2013 at 8:51 AM, Sebastien Jourdain sebastien.jourd...@kitware.com wrote:

[Paraview] How to Glyph my own Triangle Normal Calculations

2013-01-09 Thread Michael Jackson
I have some code that I am working on where I am calculating normals for triangles. I am trying to verify the calculation by visualizing the data in ParaView. I am writing a Legacy vtk file of type POLYDATA. I have a section in the CELL_DATA that starts out: NORMALS SurfaceMeshTriangleNormals

Re: [Paraview] How to Glyph my own Triangle Normal Calculations

2013-01-09 Thread Moreland, Kenneth
The glyph filter will only work on point data. Try running the Cell Centers filter and glyph the result of that. -Ken On 1/9/13 7:47 AM, Michael Jackson mike.jack...@bluequartz.net wrote: I have some code that I am working on where I am calculating normals for triangles. I am trying to verify

[Paraview] QuadView from C++

2013-01-09 Thread Michael Reuter
Hi, I'm trying to use the new QuadView from inside our C++ application. I try and create a pqRenderView pointer for the QuadView using pqObjectBuilder::createView(QuadView, pqActiveObjects::instance().activeServer()). I get the following error: Failed to create a proxy for the requested

Re: [Paraview] Wintracker - VRPN - Paraview Headtracking problem

2013-01-09 Thread Aashish Chaudhary
Hi Emiliano, Quickly looking into your error it seems like you are passing only one argument to the SetPosition? Did you configure the state file using the GUI? Thanks, On Wed, Jan 9, 2013 at 8:57 AM, Emiliano Pastorelli hoganc...@gmail.comwrote: SetPosition -- | Aashish Chaudhary | RD

Re: [Paraview] Wintracker - VRPN - Paraview Headtracking problem

2013-01-09 Thread Emiliano Pastorelli
Hi Aashish, thanks for the quick answer. Yes, i used the GUI, saved a new VRPN connection Wintracker0@localhost, then added as input a Tracker with id 0 and named sensor. Then i connected the RenderView1 CameraPosition to the tracker and then started the Vrplugin in the cave. I actually have

[Paraview] ParaView 3.14.1 ServerManager evolutions against 3.10

2013-01-09 Thread Thierry.CARRARD
Hi all, I know 3.14.1 is becoming a dated version, but I'm still having difficulties porting our visualization application from ParaView 3.10.1 to 3.14.1. After long investigations it seems it's due to a change in implementation of the method vtkProxyPropery::UpdateAllInputs() which is not

Re: [Paraview] ParaView from git, make fail on OpenSUSE 12.2

2013-01-09 Thread Pei-Ying Hsieh
Hi, Yumin, I am able to compile the released 3.14 source without any issue.  But, I always has trouble with the development version from git. I just downloaded the binary version of 3.98 for linux 64 and got the following error message:

Re: [Paraview] ParaView from git, make fail on OpenSUSE 12.2

2013-01-09 Thread Yumin Yuan
Paraview's superbuild is supposed to pull and build all the dependencies. Checkout the nightly-superbuild script to see what are enabled on the linux dashboards http://open.cdash.org/viewNotes.php?buildid=2757649 Also here is the info about the released paraview binaries:

[Paraview] Extract Z Component of a Normal or Vector

2013-01-09 Thread Michael Jackson
I have normals precomputed for a triangle based surface mesh. I have had a request to color the mesh by the Z component of the Normals. Is there a way to use the calculator or something to extract just the Z component of the normals to a result array that I can then use for coloring? Thanks

Re: [Paraview] Extract Z Component of a Normal or Vector

2013-01-09 Thread Michael Jackson
Never Mind. I found what I needed. Sorry for the noise. -- Mike Jackson www.bluequartz.net On Jan 9, 2013, at 3:10 PM, Michael Jackson wrote: I have normals precomputed for a triangle based surface mesh. I have had a request to color the mesh by the Z component of the Normals. Is there a way

Re: [Paraview] QuadView from C++

2013-01-09 Thread Sebastien Jourdain
Hi Michael, That should work, but please make sure the plugin is properly loaded. To do so you can set the environment variable PV_PLUGIN_DEBUG=1 and see if the loading is successfully achieved. Seb On Wed, Jan 9, 2013 at 10:26 AM, Michael Reuter reute...@ornl.gov wrote: Hi, I'm trying

Re: [Paraview] QuadView from C++

2013-01-09 Thread Michael Reuter
Hi Seb, After setting the environmental variable and searching the message dialog, I find: *** Attempting to load /home/2zr/build/Mantid-PV-398/bin/pvplugins/pvplugins/libQuadView.so Loaded shared library successfully. Now trying to

Re: [Paraview] ParaView 3.14.1 ServerManager evolutions against 3.10

2013-01-09 Thread Utkarsh Ayachit
Thierry, This seems to be an oversight while we were re-factoring the ServerManager for 3.12/3.14. I've pushed a fix to address this for the next release, but not sure how that would help. http://paraview.org/Bug/view.php?id=13779 Utkarsh On Wed, Jan 9, 2013 at 10:51 AM,

Re: [Paraview] Wintracker - VRPN - Paraview Headtracking problem

2013-01-09 Thread Aashish Chaudhary
On Wed, Jan 9, 2013 at 10:50 AM, Emiliano Pastorelli hoganc...@gmail.comwrote: f arguments i listed in the erro I think we don't check if your sensor has number of components equals to number of components required by the property. I think we should. So if your sensor has only one component

Re: [Paraview] [EXTERNAL] Line width option is missing

2013-01-09 Thread Scott, W Alan
Try opening your dataset, change to Representation Wireframe. Next, click on the advanced button (little gear looking thing right below the blue question mark on the Properties tab). Scroll down a few pages, about 3 centimeters below the Cube Axes, and you will find Line Width. Alan