Re: [Paraview] ParaView Binaries build config

2012-01-18 Thread Bruno Santos
Hi, I've updated the wiki page: http://www.paraview.org/Wiki/ParaView_Binaries I didn't refer to the unofficial project because it is already referred to here: http://www.paraview.org/Wiki/ParaView:Plugin_Deployment_with_Development_Installs Best regards, Bruno PS: I'm the guy that jump-star

[Paraview] using ParaView for in-situ visualization

2012-01-18 Thread Matthieu Dorier
Hello, I have difficulties to understand how to instrument a simulation with ParaView in order to perform in-situ visualization. Is there any documentation other than the simple example provided at http://paraview.org/Wiki/Coprocessing_example ? Thank you, -- Matthieu Dorier ENS Cachan, Brittany

[Paraview] Paraview-web

2012-01-18 Thread Anand Kulkarni
Hi, Bit Confused!! What options do I have to develop a visualization application for web platform using VTK? What are the preferred development architectures? Code in Java / c++ / Python? Is Paraview Web is the solution if I have to make it happen ? Thanks, Anand ___

Re: [Paraview] Paraview-web

2012-01-18 Thread Sebastien Jourdain
Hi Anand, ParaViewWeb is a technology that is already available which leverage ParaView capability for data processing and visualization. As ParaView is based on top of VTK, basically any VTK pipeline can be achieved. ParaViewWeb provides access to ParaView's proxy directly through the JavaScript

[Paraview] Scale axes in display

2012-01-18 Thread Daniel Hornung
Hello, I have the following newbie question: Is there a way to rescale the displayed size of a dataset, so that some axis have different scalings than others, while keeping the x,y,z _values_ intact? I have some data points in some parameter space, where some parameter ranges form 1-10 and ano

Re: [Paraview] ParaView Binaries build config

2012-01-18 Thread Nehme Bilal
Thank you for your replays. I think I am using the same configurations used to build ParaView 3.12 but when I try to load a plugin using ParaView 3.12 (that I downloaded from paraview website) I get the following error: ERROR: In ..\..\..\..\source\ParaViewCore\ClientServerCore\vtkPVPluginLoader

Re: [Paraview] using ParaView for in-situ visualization

2012-01-18 Thread Andy Bauer
The current main wiki page for coprocessing with ParaView is at http://paraview.org/Wiki/CoProcessing. In there it has links to 2 examples, a C++ driven example and a python driven example. You were looking at the C++ example. There's also a powerpoint presentation and some more code examples at

Re: [Paraview] ParaView Binaries build config

2012-01-18 Thread Utkarsh Ayachit
What cmake version is this? try printing out the CMAKE_CXX_COMPILER_ID in your cmakelists.txt file for building the plugin. What does it say? It should say something like MSVC. Utkarsh On Wed, Jan 18, 2012 at 10:40 AM, Nehme Bilal wrote: > Thank you for your replays. > > I think I am using the s

Re: [Paraview] Scale axes in display

2012-01-18 Thread Aashish Chaudhary
On Wed, Jan 18, 2012 at 9:10 AM, Daniel Hornung wrote: > Hello, > > I have the following newbie question: > > Is there a way to rescale the displayed size of a dataset, so that some axis > have different scalings than others, while keeping the x,y,z _values_ intact? > > I have some data points in

Re: [Paraview] ParaView Binaries build config

2012-01-18 Thread Nehme Bilal
I am using CMake 2.8.3. MESSAGE("CMAKE_CXX_COMPILER_ID =" ${CMAKE_CXX_COMPILER_ID}) gives : CMAKE_CXX_COMPILER_ID = I tried CMake 2.8.7 and I've got the same result. Nehme On Wed, Jan 18, 2012 at 10:59 AM, Utkarsh Ayachit wrote: > What cmake version is this? try printing out the CMAKE_CXX_COMPI

Re: [Paraview] ParaView Binaries build config

2012-01-18 Thread Nehme Bilal
I deleted cache and configure again with CMake2.8.7 and I've got MSVC. Thanks Utkarsh ! On Wed, Jan 18, 2012 at 11:23 AM, Nehme Bilal wrote: > I am using CMake 2.8.3. > MESSAGE("CMAKE_CXX_COMPILER_ID =" ${CMAKE_CXX_COMPILER_ID}) > gives : CMAKE_CXX_COMPILER_ID = > > I tried CMake 2.8.7 and I've

Re: [Paraview] using ParaView for in-situ visualization

2012-01-18 Thread Matthieu Dorier
Thank you, this tutorial will help a lot. Matthieu 2012/1/18 Andy Bauer > The current main wiki page for coprocessing with ParaView is at > http://paraview.org/Wiki/CoProcessing. In there it has links to 2 > examples, a C++ driven example and a python driven example. You were > looking at the