Re: [Paraview] Python - Get Information Properties

2010-05-03 Thread Sebastien Jourdain
You should be able to call this method directly on your proxy object that own your dataset such as a filter of a reader. extent = data.GetDataInformation().GetExtent(); Seb On Mon, May 3, 2010 at 4:07 PM, Christian Werner christian.wer...@rwth-aachen.de wrote: Hi! Is there a way to access

Re: [Paraview] Manta Download

2010-05-11 Thread Sebastien Jourdain
Hi Natalie, You should be able to find what you are looking for in that web page. http://mantawiki.sci.utah.edu/manta/index.php/Main_Page Seb On Tue, May 11, 2010 at 9:37 AM, Natalie Happenhofer natalieh...@hotmail.com wrote: Hi everybody, I'm looking for a Manta download to build use

Re: [Paraview] Indication of delay between interactive and still render?

2010-06-24 Thread Sebastien Jourdain
Me too but as a count down... On Thu, Jun 24, 2010 at 8:38 PM, Marcus D. Hanwell marcus.hanw...@kitware.com wrote: On Thu, Jun 24, 2010 at 8:31 PM, David Thompson dcth...@sandia.gov wrote: That is really a good point. The more I use it, the more I realize this is absolutely essential. But how

Re: [Paraview] Reexecute pipeline

2010-07-06 Thread Sebastien Jourdain
Once you changed your data on your custom data source, you will have to mark your datasource as Modified(). Then, a simple Render() or Update() will recompute the pipeline. Seb On Tue, Jul 6, 2010 at 5:22 AM, owen.arn...@stfc.ac.uk wrote: How can I force the pipeline to reexecute my custom

Re: [Paraview] External execution of python code related to paraview

2010-07-09 Thread Sebastien Jourdain
Instead of launching the graphical interface of ParaView, you can launch the pvpython executable which is a python shell from where you should be able to execute your script. And I think you can directly provide a script as argument so you should be able to execute your script in one command line.

Re: [Paraview] vtk file open command

2010-07-12 Thread Sebastien Jourdain
The solution has been post previously but here is what you should look for. # The python script is the following: from paraview.simple import * reader = OpenDataFile('...\out1-1.vtk') Show(reader) Render() # Seb On Mon, Jul 12, 2010 at 3:35 PM, llapis Pencil llapispen...@yahoo.es

Re: [Paraview] transparent background

2010-09-13 Thread Sebastien Jourdain
Hi Stephane, On the VTK side which might be able to be done in the scripting layer of ParaView also (but not sure), you will need 2 things: 1) tell the render window to send alpha : view-GetRenderWindow()-SetAlphaBitPlanes(1); 2) request the Alpha value on the window capture filter :

Re: [Paraview] VTK files with only points

2010-09-13 Thread Sebastien Jourdain
Unstructured grid needs cells even though you are only interested in points. You will have to create one cell per point or one cell that refer each point. VTK_VERTEX or VTK_POLY_VERTEX. You can check the following document to see what I mean by Cell. Seb

[Paraview] New feature in ParaView: Spreadsheet view support sorting

2010-09-16 Thread Sebastien Jourdain
Hi everyone, I just wanted to let you know that we recently added a new feature into ParaView which allow the user to sort a column in the Spreadsheet view. So if you want to give a try and send me some feed back. Just fill free to do so. You can find more information on how it works on this

Re: [Paraview] Lode several files at the same time.

2010-09-20 Thread Sebastien Jourdain
Hi Kicki, if you write a vtm file that refer to your vtp ones, then you would need only to load one file. To build such a file, I guess you can append your 3 datasets into 1 with the append filter and save the given dataset into a file. Seb On Mon, Sep 20, 2010 at 6:44 AM, Kristina Silverbåge

Re: [Paraview] RAW to STL Script Help?

2010-10-14 Thread Sebastien Jourdain
regarding Trace State. If you find the things Sebastien is mentioning and have trouble just let us know. http://www.cmake.org/Wiki/Python_GUI_Tools -Eric On Oct 14, 2010, at 8:24 AM, Sebastien Jourdain wrote: Hi Christopher, the python trace allow the user to record some actions in the UI

Re: [Paraview] How to use a filter in a Python script?

2010-11-03 Thread Sebastien Jourdain
Hi Hamilton, You can look at http://www.paraview.org/Wiki/ParaView/Python_Scripting and that http://www.paraview.org/Wiki/ParaViewUsersGuide/List_of_filters Seb On Tue, Nov 2, 2010 at 10:31 PM, g...@accutrol.com wrote: I am a newbie to Paraview and have little experience programming Python.  

Re: [Paraview] VTK File Format Question

2010-12-12 Thread Sebastien Jourdain
Hi Jeff, on the help page of vtk (http://www.vtk.org/VTK/help/documentation.html) you do have a link on the VTK file format. You should be able to find all the informations that you need here: http://www.vtk.org/VTK/img/file-formats.pdf Seb On Sat, Dec 11, 2010 at 8:44 PM, Jeff Johnson

Re: [Paraview] VTK File Format Question

2010-12-13 Thread Sebastien Jourdain
with scalar data, but what does the scalar data represent, and how do I associated it with the cubes? -Jeff On Dec 12, 2010, at 03:27 , Sebastien Jourdain wrote: Hi Jeff, on the help page of vtk (http://www.vtk.org/VTK/help/documentation.html) you do have a link on the VTK file format

Re: [Paraview] place 2-D png file in 3-D field

2010-12-16 Thread Sebastien Jourdain
If you create a plane source, you can use your image as a texture. Hope this helps, Seb On Thu, Dec 16, 2010 at 10:47 AM, Xueli Wang w...@knmi.nl wrote: Dear ParaView users, I made a movie in 3-D space, but I want to put a 2-D image file on one of the corners. It is so difficult to fix it

Re: [Paraview] [paraviewweb] trouble with paraviewweb on windows

2011-01-07 Thread Sebastien Jourdain
Hi Pjotr, few comments before getting further for solving the problem that you are facing. As Utkarsh said we didn't try to have a Windows server for ParaViewWeb and as a client IE is not the best browser available specially with the JavaScript renderer. In fact, if the targeted client is IE,

Re: [Paraview] Some tests and questions about PV 3.10.0-RC1

2011-02-04 Thread Sebastien Jourdain
Hi Richard, I've just talked to Rob about your problem and explained your point. Rob is going to report a bug for that. One solution we were thinking of is when several files are selected in the OpenFile process, if we already have define a reader for a given extension, we reuse that same reader

Re: [Paraview] Multiblock dataset, ghost nodes and problem with rendering contours with opacity

2011-02-08 Thread Sebastien Jourdain
file to load these files as part for each timestep. I am not even using a *.pvtr. Is it possible to do it the way I am doing it right now or do I need to use *.pvtr file? Thanks for you help, Mohamad On Sun, Feb 6, 2011 at 6:30 PM, Sebastien Jourdain sebastien.jourd...@kitware.com wrote: Hi

Re: [Paraview] scripting beginner

2011-02-19 Thread Sebastien Jourdain
Hi, you forget to call Render() before and after the ResetCamera(). Seb On Sat, Feb 19, 2011 at 9:59 AM, Tim Gallagher tim.gallag...@gatech.edu wrote: Without looking at the script in detail, have you tried using the Python Trace feature in the GUI? Since, at this stage anyway, all of your

Re: [Paraview] Visit Reader crash

2011-03-11 Thread Sebastien Jourdain
Hi Guys, to give you some heads up, the issue that you are facing where the client is not working with a server which has a different proxy definition set, such as the SILO and CGNS readers will be solved in ParaView 4. Now the client will get the Proxy definition from the server, so no more

Re: [Paraview] Updating an Information Only Property

2011-03-21 Thread Sebastien Jourdain
Hi Brian, on the proxy itself, you can call either of the two methods UpdatePropertyInformation() / UpdatePropertyInformation(vtkSMProperty*) Seb On Mon, Mar 21, 2011 at 3:38 PM, Brian Panneton brian.panne...@gmail.com wrote: I currently have a custom panel with two QComboBoxes. Box2 depends

Re: [Paraview] Getting a raytraced picture from Manta

2011-03-22 Thread Sebastien Jourdain
Hi Sohail, you should just close the default 3D view and create the Manta one by clicking on its button. Then any object that you create will be shown in that raytracer view... And with the latest implementation, you don't need a remote server anymore. Seb On Tue, Mar 22, 2011 at 4:18 PM,

Re: [Paraview] Getting a raytraced picture from Manta

2011-03-22 Thread Sebastien Jourdain
, Sebastien Jourdain sebastien.jourd...@kitware.com*wrote: From: Sebastien Jourdain sebastien.jourd...@kitware.com Subject: Re: [Paraview] Getting a raytraced picture from Manta To: Sohail Shafii sohailsha...@yahoo.com Cc: paraview@paraview.org Date: Tuesday, March 22, 2011, 1:32 PM Hi Sohail

Re: [Paraview] Information Only Property Parameters

2011-03-23 Thread Sebastien Jourdain
Unfortunately that's the way you have to do it. Or the other way is to use GatherInformation() but it won't be much better. On Wed, Mar 23, 2011 at 10:23 AM, Brian Panneton brian.panne...@gmail.com wrote: If I have an information_only property with a command to get a vtkStringArray, is there a

Re: [Paraview] Information Only Property Parameters

2011-03-23 Thread Sebastien Jourdain
loaded it. How should I be pushing the variable to the server? On Wed, Mar 23, 2011 at 11:11 AM, Sebastien Jourdain sebastien.jourd...@kitware.com wrote: Unfortunately that's the way you have to do it. Or the other way is to use GatherInformation() but it won't be much better. On Wed, Mar

Re: [Paraview] Information Only Property Parameters

2011-03-24 Thread Sebastien Jourdain
in DataTypeList which depends on TypeList. If either DataList or DataTypeList is run first it defaults to none. Is there a way to make them load data in order? On Wed, Mar 23, 2011 at 2:23 PM, Sebastien Jourdain sebastien.jourd...@kitware.com wrote: Who is supposed to change the property

Re: [Paraview] Information Only Property Parameters

2011-03-24 Thread Sebastien Jourdain
. Next I called UpdatePropertyInformation on the second combobox. For the order issue, I just ended up renaming them so they followed the order I needed. Thanks, Brian Panneton On Thu, Mar 24, 2011 at 9:47 AM, Sebastien Jourdain sebastien.jourd...@kitware.com wrote: Hi Brian, I'm not sure

[Paraview] ANN: Upcoming changes to ParaView Server Manager

2011-03-28 Thread Sebastien Jourdain
Folks, For those of you who haven't follow the topic in the paraview-developers mailing list here is a quick summary on what's going on in the coming weeks. We've been working for a while now on restructuring the Server Manager of ParaView to make it more efficient as well as allowing it to

Re: [Paraview] ANN: Upcoming changes to ParaView Server Manager

2011-03-29 Thread Sebastien Jourdain
Hi Takuya, I'm glad that you gave a try and you managed to make your plugin work. Moreover, thanks for that cheat sheet. Here is my feedback about it: OLD: pxy-Set/GetServers() (where pxy is a vtkSMProxy) NEW: pxy-Set/GetLocation() Yes OLD: pxy-Set/GetConnectionID() NEW:

Re: [Paraview] ANN: Upcoming changes to ParaView Server Manager

2011-03-29 Thread Sebastien Jourdain
and location to send and execute the stream that may not be related in any other way to that proxy. thanks, Seb Takuya Takuya OSHIMA, Ph.D. Faculty of Engineering, Niigata University 8050 Ikarashi-Ninocho, Nishi-ku, Niigata, 950-2181, JAPAN From: Sebastien Jourdain sebastien.jourd

Re: [Paraview] ANN: Upcoming changes to ParaView Server Manager

2011-03-29 Thread Sebastien Jourdain
show 2aa56d) Enjoy, Seb 2011/3/29 Takuya OSHIMA osh...@eng.niigata-u.ac.jp: Thanks again for the clarification! Takuya Takuya OSHIMA, Ph.D. Faculty of Engineering, Niigata University 8050 Ikarashi-Ninocho, Nishi-ku, Niigata, 950-2181, JAPAN From: Sebastien Jourdain sebastien.jourd

Re: [Paraview] ANN: Upcoming changes to ParaView Server Manager

2011-03-29 Thread Sebastien Jourdain
it has been assigned. Try to set 145 to replace the current 289 value. Any idea what might need to be changed in order to get this working? A different syntax for the ADD_PARAVIEW_OBJECT_PANEL in CMakeLists.txt maybe? Thanks for any hint. Sven Sebastien Jourdain wrote, On 03/28/11 21:29

Re: [Paraview] ANN: Upcoming changes to ParaView Server Manager

2011-03-30 Thread Sebastien Jourdain
in CMakeLists.txt maybe? Thanks for any hint. Sven Sebastien Jourdain wrote, On 03/28/11 21:29: Folks, For those of you who haven't follow the topic in the paraview-developers mailing list here is a quick summary on what's going on in the coming weeks. We've been working for a while now

Re: [Paraview] paraviewWeb linux 64bits

2011-04-06 Thread Sebastien Jourdain
a browser without installing it? I Googled it but didn't find any information about it. Can you give a instruction page? Thanks. Best regards, http://code-saturne.blogspot.com/ On 6 April 2011 13:58, Sebastien Jourdain sebastien.jourd...@kitware.com wrote: BTW, you can disable the flex

Re: [Paraview] ANN: Upcoming changes to ParaView Server Manager

2011-04-06 Thread Sebastien Jourdain
PM, Sebastien Jourdain sebastien.jourd...@kitware.com wrote: Folks, For those of you who haven't follow the topic in the paraview-developers mailing list here is a quick summary on what's going on in the coming weeks. We've been working for a while now on restructuring the Server Manager

Re: [Paraview] ANN: Upcoming changes to ParaView Server Manager

2011-04-08 Thread Sebastien Jourdain
Hi Folks, We finally merge to master. So next time you build from a fresh update, don't forget to do a clean build. Thanks, Seb On Wed, Apr 6, 2011 at 3:43 PM, Sebastien Jourdain sebastien.jourd...@kitware.com wrote: Hi Folks, The time has gone and we plan to merge the Collaboration branch

Re: [Paraview] error after last git update: protobuf

2011-04-19 Thread Sebastien Jourdain
Did you update your submodules ? git submodule update Seb On Tue, Apr 19, 2011 at 10:55 AM, Ricardo Reis rr...@aero.ist.utl.pt wrote:  I've got this error after my last git update:  CMake Error at CMake/ParaViewCommon.cmake:514 (ADD_SUBDIRECTORY):   The source directory    

Re: [Paraview] Problem loading multiple volumes in ParaviewWeb

2011-04-28 Thread Sebastien Jourdain
Hi Raj, The reason why you are not seeing the same settings across your data is because you need to apply your SetDisplayProperties for each loaded data. The reason why only the last one is set correctly, it's because ParaView has a stack of active objects. And since the SetDisplayProperties

Re: [Paraview] image bufferin ParaviewWeb

2011-04-28 Thread Sebastien Jourdain
Hi Luigi, the bug you are facing was a bug inside VTK that I fixed maybe just after 3.10.0. But you can patch your VTK, as it's a really small fix. Seb PS: I've paste the fix bellow commit e938db39c2bbd730a060cb0cf95fec52e15d281a Author: Sebastien Jourdain sebastien.jourd...@kitware.com Date

Re: [Paraview] paraviewweb on windows

2011-04-28 Thread Sebastien Jourdain
Hi Katsumi, when you've got questions on ParaView/ParaViewWeb, you should post them on the Paraview mailing list. So other could benefit from it. Thanks Seb On Thu, Apr 28, 2011 at 7:49 AM, Sebastien Jourdain sebastien.jourd...@kitware.com wrote: Hi Katsumi, ParaViewWeb should work

Re: [Paraview] ParaViewWeb Building problem

2011-04-28 Thread Sebastien Jourdain
Hi Kelly, Right now you should use ParaView 3.10.1 for ParaViewWeb, but I should push a fix today for ParaView master. After my fix, for the ones that wants to use ParaView 3.10.1, you should used the ParaViewWeb version that come with the tag pv-3.10.1. To get that given version from your git

Re: [Paraview] Problem loading multiple volumes in ParaviewWeb

2011-04-28 Thread Sebastien Jourdain
On Thu, Apr 28, 2011 at 4:13 PM, Rajvikram Singh rajvikr...@yahoo.comwrote: Thanks Sebastien .. that was the problem :) It works fine now and I can switch the different datasets on/off. --- On *Thu, 28/4/11, Sebastien Jourdain sebastien.jourd...@kitware.com*wrote: From: Sebastien

[Paraview] ParaViewWeb update

2011-04-28 Thread Sebastien Jourdain
Hi Folks, I've just push today some fix to the ParaViewWeb repository to support the latest ParaView git/master. But for the users of ParaViewWeb that want to use the latest ParaView release (3.10.1) instead, you should checkout the tag pv-3.10.1 in the ParaViewWeb repository. In order to do

Re: [Paraview] servermanager XML

2011-04-29 Thread Sebastien Jourdain
Hi Patrik, you can also find some documentation in the vtkSMProxyManager.h and vtkSMProxy.h files. Seb On Fri, Apr 29, 2011 at 9:48 AM, pratik pratik.mal...@gmail.com wrote: Hi, Where can i find a good resource to learn server manager configuration XML? Currently, the paraview Guide seems

Re: [Paraview] ParaviewWeb : Adding interactive slice filter to pipeline

2011-05-02 Thread Sebastien Jourdain
Hi Raj, You are not getting the propers bounds when you directly access them like that: reader.Bounds In fact, if you validate each line that you wrote inside the JavaScript console of your browser, you could have seen that Bounds was not part of the reader proxy. Moreover, it goes against the

Re: [Paraview] ParaviewWeb : Adding interactive slice filter to pipeline

2011-05-02 Thread Sebastien Jourdain
, May 2, 2011 at 8:59 AM, Sebastien Jourdain sebastien.jourd...@kitware.com wrote: Hi Raj, You are not getting the propers bounds when you directly access them like that: reader.Bounds In fact, if you validate each line that you wrote inside the JavaScript console of your browser, you could

Re: [Paraview] ParaviewWeb : Adding interactive slice filter to pipeline

2011-05-03 Thread Sebastien Jourdain
-id); renderer.start(); --- On *Tue, 3/5/11, Sebastien Jourdain sebastien.jourd...@kitware.com*wrote: From: Sebastien Jourdain sebastien.jourd...@kitware.com Subject: Re: [Paraview] ParaviewWeb : Adding interactive slice filter to pipeline To: Rajvikram Singh rajvikr...@yahoo.com Cc

Re: [Paraview] ParaviewWeb : Adding interactive slice filter to pipeline

2011-05-03 Thread Sebastien Jourdain
Hi Raj, I managed to show the correct color by executing that: sliceType.setNormal(0,0,1); sliceType.setOrigin(view1.getCenterOfRotation()); pv.SetDisplayProperties( {proxy : slice, view : view1, Representation : 'Surface', ColorArrayName : 'ImageFile'} ); In fact you shouldn't set any

Re: [Paraview] ParaviewWeb : Adding interactive slice filter to pipeline

2011-05-03 Thread Sebastien Jourdain
the colors show up correctly and though now the interactive widget has disappeared I think I'm going to work around it by having a UI slider which lets the users slice through the data in X, Y or Z.. Thanks once again for all the patience and help. Raj --- On *Wed, 4/5/11, Sebastien Jourdain

Re: [Paraview] ParaviewWeb two sessions, two views, two volume datasets

2011-05-09 Thread Sebastien Jourdain
Hi Raj, first of all you only need one session. A session is basically a dedicated connection to a ParaView server. So by creating 2 session, you were creating 2 server where you could have created 2 views in the same session and setup a mechanism to keep both camera of the views in synch.

Re: [Paraview] paraviewweb on windows

2011-05-10 Thread Sebastien Jourdain
detailed building procedure for Windows. And as you wrote, now getting activemq-cpp 3.1.0. is very difficult... Please let me know how to get/build activemq-cpp 3.1.0. Best regards, Katsumi SEKIDO -Original Message- From: Sebastien Jourdain [mailto:sebastien.jourd...@kitware.com] Sent

Re: [Paraview] ParaviewWeb two sessions, two views, two volume datasets

2011-05-10 Thread Sebastien Jourdain
a server side plugin .. this time :) Thanks again Sebastien. --- On *Tue, 10/5/11, Sebastien Jourdain sebastien.jourd...@kitware.com*wrote: From: Sebastien Jourdain sebastien.jourd...@kitware.com Subject: Re: [Paraview] ParaviewWeb two sessions, two views, two volume datasets

Re: [Paraview] error Paraview adapter

2011-05-10 Thread Sebastien Jourdain
Hi Luca, I've cc the ParaView mailing list (as you should do) so other could benefit from your experience as well. Which version of ParaView are you using ? If it's the release one, you should follow the instruction that I've posted on the ParaView mailing list to checkout the correct

Re: [Paraview] error Paraview adapter

2011-05-10 Thread Sebastien Jourdain
Il 10/05/2011 16:30, Sebastien Jourdain ha scritto: Hi Luca, I've cc the ParaView mailing list (as you should do) so other could benefit from your experience as well. Which version of ParaView are you using ? If it's the release one, you should follow the instruction that I've posted

Re: [Paraview] paraviewweb on windows

2011-05-11 Thread Sebastien Jourdain
regards, Katsumi SEKIDO -Original Message- From: Sebastien Jourdain [mailto:sebastien.jourd...@kitware.com] Sent: Tuesday, May 10, 2011 9:15 PM To: Sekido, Katsumi Cc: paraview@paraview.org Subject: Re: paraviewweb on windows Hi Katsumi, as I said previously, ParaViewWeb should work

Re: [Paraview] Paraview Web view along X,Y or Z

2011-05-14 Thread Sebastien Jourdain
Hi Raj, if you create a 2D view instead of a 3D one, you'll get exactly what you want. But, since it's a hidden API from the JavaScript, you'll need to make a python plugin to enable that API You need to call: paraview.simple._create_view(2DRenderView) them, you just need to play with some

Re: [Paraview] ParaviewWeb : Repeated calls to GetLookupTableForArray do not change the RGBpoints array

2011-05-19 Thread Sebastien Jourdain
Hi Raj, could you send the piece of code that update those RGBPoints values ? Thanks, Seb On Thu, May 19, 2011 at 12:58 PM, Rajvikram Singh rajvikr...@yahoo.comwrote: Hi Utkarsh I'm using Jquery to load the .XML files. It works without any problems the first time and RGBPoints

Re: [Paraview] ParaviewWeb : Repeated calls to GetLookupTableForArray do not change the RGBpoints array

2011-05-19 Thread Sebastien Jourdain
, num_components : 1, HSVWrap : 0, NanColor : nanColor, RGBPoints : rgbPoints, ColorSpace : colorSpace}); Sof = pv.CreatePiecewiseFunction( {Points: sofPoints}); } // End of loadXMLColorMap() Thanks again. - Raj --- On *Thu, 19/5/11, Sebastien Jourdain sebastien.jourd

Re: [Paraview] [help] Volume rendering in ParaviewWeb

2011-05-24 Thread Sebastien Jourdain
Hi, You should provide the JavaScript has well. Otherwise it's thought to understand what is wrong when you have half of the informations. Moreover, you can also look at that previous e-mail. (http://markmail.org/thread/bm32g6sckjqvyiy5) It show some code on how to setup the volume rendering from

Re: [Paraview] paraviewweb on windows

2011-05-26 Thread Sebastien Jourdain
know how can I resolve this error. Best regards, Katsumi SEKIDO -Original Message- From: Sebastien Jourdain [mailto:sebastien.jourd...@kitware.com] Sent: Wednesday, May 11, 2011 3:05 PM To: Sekido, Katsumi Cc: paraview@paraview.org Subject: Re: paraviewweb on windows Hi Katsumi

Re: [Paraview] ParaViewWeb Server on Linux

2011-05-30 Thread Sebastien Jourdain
../SOURCE_DIR. But I couldn't find SOURCE_DIR. So I tried ParaViewWeb directory gotten by git command. But cmake doesn't work... How should I indicate directory as the SOURCE_DIR ? Best regards, Katsumi SEKIDO -Original Message- From: Sebastien Jourdain [mailto:sebastien.jourd

Re: [Paraview] ParaViewWeb Server on Linux

2011-05-31 Thread Sebastien Jourdain
SEKIDO -Original Message- From: Sebastien Jourdain [mailto:sebastien.jourd...@kitware.com] Sent: Monday, May 30, 2011 9:56 PM To: Sekido, Katsumi Cc: paraview@paraview.org Subject: Re: ParaViewWeb Server on Linux Hi Katsumi, your first attempt was the right one. SOURCE_DIR

Re: [Paraview] ParaViewWeb Server on Linux

2011-06-01 Thread Sebastien Jourdain
main.cxx refers PROCESS_CLIENT but this symbol is not defined in vtkProcessModule.h and other all files... How can I resolve this problem? Best regards, Katsumi SEKIDO -Original Message- From: Sebastien Jourdain [mailto:sebastien.jourd...@kitware.com] Sent: Tuesday, May 31, 2011 8:38

Re: [Paraview] paraviewweb on Solaris

2011-06-01 Thread Sebastien Jourdain
Hi Luca, I did not tested ParaViewWeb on Solaris, but if Paraview is working on your solaris, I think you will have a good chance that everything should work just fine. Just use use gcc instead of the Sun compiler. Seb On Wed, Jun 1, 2011 at 11:21 AM, Luca Cinquepalmi cinquepa...@planetek.it

Re: [Paraview] Embed ParaView in a Powerpoint presentation

2011-06-14 Thread Sebastien Jourdain
Hi Terry, The flash support through ParaViewWeb works as a client where the rendering is done remotely. So you can not use that technique for a visualization in a PowerPoint. The flash application that you get is not a standalone SWF file that you may play again offline. Although, you might need

Re: [Paraview] compiling ParaViewWeb

2011-06-14 Thread Sebastien Jourdain
Hi Luigi, Please check that wiki page http://www.paraview.org/Wiki/ParaViewWeb_Building which explain which version is compatible with what. Seb PS: activemq-cpp 3.1.x is the solution... Or submit a patch with the API changed that occurs in activemq-cpp 3.2+ On Tue, Jun 14, 2011 at 8:32 PM,

Re: [Paraview] Export VRML files for meshlab to check

2011-06-18 Thread Sebastien Jourdain
Hi, this bug was fix in git master. Seb On Sat, Jun 18, 2011 at 7:45 AM, Wayne Wu sala...@gmail.com wrote: Hello, I am required to export VRML objects from ParaView using Python scripts. I followed the examples at http://www.paraview.org/pipermail/paraview/2010-June/017989.html to

Re: [Paraview] Export VRML files for meshlab to check

2011-06-18 Thread Sebastien Jourdain
wrote: Hi Sebastien, Thanks a lot. Does that mean I have to build ParaView from the latest git source? When should the binaries of this fixed version come to be released if I don't build by myself? Thanks. http://code-saturne.blogspot.com/ On 18 June 2011 13:55, Sebastien Jourdain

Re: [Paraview] [ParaviewWeb] JavaApplet Renderer

2011-07-04 Thread Sebastien Jourdain
Hi Guys, the image reduction is not working with the Applet when the applet is not allowed to execute some JavaScript code. This usually happen only on Mac when the browser used is not Safari. Is it the case ? Thanks, Seb On Fri, Jun 24, 2011 at 10:17 AM, Utkarsh Ayachit

Re: [Paraview] [ParaviewWeb] JavaApplet Renderer

2011-07-04 Thread Sebastien Jourdain
frederic.cervenan...@creatis.insa-lyon.fr wrote: Hi, No, the browser that we use is Chrome (on Linux) or Firefox (on Windows). The ParaviewServer is deployed on our cluster, accessed through a ssh tunnel but I don't think it's the problem. No? Frederic Le 04/07/2011 15:37, Sebastien

Re: [Paraview] [ParaviewWeb] JavaApplet Renderer

2011-07-04 Thread Sebastien Jourdain
Just push a fix to git/master Seb On Mon, Jul 4, 2011 at 10:45 AM, Sebastien Jourdain sebastien.jourd...@kitware.com wrote: Hum, if the JavaScript renderer successfully reduce the image size by 2 when interacting then your problem do not come from your cluster/ssh config. Moreover, do you

Re: [Paraview] Newbie question

2011-07-11 Thread Sebastien Jourdain
Hi Tom, You started well in the sense that the main page of ParaViewWeb is here: http://www.paraview.org/Wiki/ParaViewWeb Although, setting up a web server that use ParaView to generate interactive 3D content requires to build the tools and most of its dependency. On Unix type platform (Linux,

Re: [Paraview] loading state file ParaviewWeb

2011-07-12 Thread Sebastien Jourdain
Il 11/07/2011 15.45, Sebastien Jourdain ha scritto: Hi Tom, You started well in the sense that the main page of ParaViewWeb is here: http://www.paraview.org/Wiki/ParaViewWeb Although, setting up a web server that use ParaView to generate interactive 3D content requires to build the tools

Re: [Paraview] loading state file ParaviewWeb

2011-07-12 Thread Sebastien Jourdain
? thank you. Luca Il 12/07/2011 14:37, Sebastien Jourdain ha scritto: Hi Luca, I guess you are talking about the PWApp which is a sample application of ParaViewWeb therefore is not really what ParaViewWeb can or can not do. But the limitation that you see in the upload form was just made

Re: [Paraview] loading state file ParaviewWeb

2011-07-12 Thread Sebastien Jourdain
Ok great... On Tue, Jul 12, 2011 at 11:34 AM, Luca Cinquepalmi cinquepa...@planetek.it wrote: I solved! thanks Luca Il 12/07/2011 14:37, Sebastien Jourdain ha scritto: Hi Luca, I guess you are talking about the PWApp which is a sample application of ParaViewWeb therefore is not really

Re: [Paraview] ParaViewWeb Server on Linux

2011-07-19 Thread Sebastien Jourdain
seems to work normally. And I can't understand what is wrong. So... please let me know how can I fix this problem. Best regards, Katsumi SEKIDO -Original Message- From: Sebastien Jourdain [mailto:sebastien.jourd...@kitware.com] Sent: Thursday, June 02, 2011 9:03 PM To: Sekido, Katsumi

Re: [Paraview] ParaViewWeb Server on Linux

2011-07-21 Thread Sebastien Jourdain
: Sebastien Jourdain [mailto:sebastien.jourd...@kitware.com] Sent: Wednesday, July 20, 2011 9:19 PM To: Sekido, Katsumi Cc: paraview@paraview.org Subject: Re: ParaViewWeb Server on Linux Hi Katsumi, running applications like that as root is bad, but this won't affect the capability of the software

Re: [Paraview] ParaViewWeb build - PWServer

2011-08-10 Thread Sebastien Jourdain
Hi Max, there is two things happening here. The first one is related to an API change in ActiveMQ-cpp which induce this compilation issue. Although it happen that I was working on that part lately and managed to use activemq-cpp 3.4 on a linux machine. To do so, you will need to edit the

Re: [Paraview] ParaViewWeb build - PWServer

2011-08-10 Thread Sebastien Jourdain
Moreover, all the version of activemq-cpp can be found here: http://activemq.apache.org/cms/download.html On Wed, Aug 10, 2011 at 11:54 AM, Sebastien Jourdain sebastien.jourd...@kitware.com wrote: Hi Max, there is two things happening here. The first one is related to an API change

Re: [Paraview] ParaViewWeb build - PWServer

2011-08-10 Thread Sebastien Jourdain
. maxwell.wilkin...@durham.ac.uk wrote: Hi Seb Thanks for the swift reply. I now have PWServer compiled using activemq-cpp 3.4.0, all tests were passed and it is now installed :) Max -Original Message- From: Sebastien Jourdain [mailto:sebastien.jourd...@kitware.com] Sent: Wed 10/08

Re: [Paraview] ParaViewWeb build - PWServer

2011-08-10 Thread Sebastien Jourdain
to ../ParaViewWeb or should I use one of the sub-directories? I'm hoping to have the sample applications running soon! Thanks Max -Original Message- From: Sebastien Jourdain [mailto:sebastien.jourd...@kitware.com] Sent: Wed 10/08/11 19:51 To: WILKINSON M. Cc: paraview

Re: [Paraview] ParaViewWeb build - PWServer

2011-08-11 Thread Sebastien Jourdain
To: Sebastien Jourdain Subject: RE: [Paraview] ParaViewWeb build - PWServer Hi Seb Thanks for your reply, I understand the ccmake process now. I've managed to build PWServer and PWService. I've added: PWService.war to ../tomcat/webapps/ pw-config.properties to ../tomcat/lib/ However

Re: [Paraview] ParaViewWeb build - PWServer

2011-08-19 Thread Sebastien Jourdain
to the remainder of this post some answers to previous problems I've had while setting up ParaViewWeb. Hopefully these will be of use to other users. A big thank you to Sebastian for his help. Max -Original Message- From: Sebastien Jourdain [mailto:sebastien.jourd...@kitware.com] Sent

Re: [Paraview] ParaViewWeb build - PWServer

2011-08-21 Thread Sebastien Jourdain
/wireformat/openwire/OpenWireFormat.cpp, LINE: 265     FILE: activemq/transport/IOTransport.cpp, LINE: 243 I've searched for the above errors, but I couldn't find a solution. Could someone suggest what the problem may be? Thanks Max -Original Message- From: Sebastien Jourdain

Re: [Paraview] Regarding Paraview Web Visualization

2011-08-23 Thread Sebastien Jourdain
Hi Sudhir, I'm glad you managed to deploy successfully ParaViewWeb specially with the latest version of activemq-cpp. Regarding your issue I have an idea, but I might need also some more feedback from you. First of all, what kind of data did you tried to render ? Did you used, one of our sample

Re: [Paraview] Regarding Paraview Web Visualization

2011-08-24 Thread Sebastien Jourdain
 is same. I am sending you screenshot of CMake Configuration and related errors I am getting. Many Thanks, Sudhir Original Message Subject: Re: Regarding Paraview Web Visualization From: Sebastien Jourdain sebastien.jourd...@kitware.com Date: Tue, August 23, 2011 6:54 pm

[Paraview] Fwd: Regarding Paraview Web Visualization

2011-08-25 Thread Sebastien Jourdain
Just so anyone from the mailing list could fix temporary a bug with the WebGL exporter. -- Forwarded message -- From: Sebastien Jourdain sebastien.jourd...@kitware.com Date: Thu, Aug 25, 2011 at 11:11 AM Subject: Re: Regarding Paraview Web Visualization To: spat

Re: [Paraview] paraviewweb on ubuntu server

2011-09-19 Thread Sebastien Jourdain
. Luca 2011/9/7 Sebastien Jourdain sebastien.jourd...@kitware.com That should be fine. You will have to compile paraview with osmesa, but if you follow the wiki, that should be just fine. Moreover, if you grab the latest sources, they will work with activemq-cpp 3.4+ Seb On Wed, Sep 7

Re: [Paraview] paraviewweb on ubuntu server

2011-09-19 Thread Sebastien Jourdain
cinquepalmi.l...@gmail.com wrote: No I didn't compile Mesa... What is it? I didn't do it also on my notebook... and PW works with no problem... Luca 2011/9/19 Sebastien Jourdain sebastien.jourd...@kitware.com This seems to be related to OpenGL. Did you compile your own Mesa, like describe

Re: [Paraview] paraview not running!!!

2011-09-29 Thread Sebastien Jourdain
Why are you using Wine ? Can't you just run ParaView natively under your linux ? On Thu, Sep 29, 2011 at 1:21 PM, John Drescher dresche...@gmail.com wrote: On Thu, Sep 29, 2011 at 1:18 PM, naveen kumar naveenn...@gmail.com wrote: Dear Paraview Users, i am new to paraviewer family. recently i

Re: [Paraview] Creation of new proxy vtkSMFileSeriesReaderProxy failed

2011-10-03 Thread Sebastien Jourdain
Hi Jean, Yes we did some changes regarding the proxy definitions. We don't need any more specific proxy code regarding the file serie reader. To fix your XML, you should write it as follow: ProxyGroup name=sources   SourceProxy name=GPReader

Re: [Paraview] Replacement for vtkSMProxy.h

2011-10-11 Thread Sebastien Jourdain
Hi Mike, Normally, few things need to be changed. Maybe due to the restructuration of the code, some of the CMake variables have changed as well as the library names. A quick look into the CMakeLists.txt of the plugins from paraview should fix most of it. XML wise, it's a different story, but

Re: [Paraview] Visualization of legacy Vtk

2011-10-12 Thread Sebastien Jourdain
You need to change the representation in ParaView to be Surface instead of Outline in one of the combo box that is in the toolbar. Seb On Wed, Oct 12, 2011 at 12:32 PM, Negar Mohaghegh neg...@ece.ubc.ca wrote: Hi, I have a vtk file, generated by the famous WriteToVtk.m file circulating in

Re: [Paraview] Interpolate data from an unstructured mesh to a structured one

2011-11-01 Thread Sebastien Jourdain
Hi Gena, you can also use Resample with dataset. The only missing part will be your destination dataset that you want to use for sampling your original data. You can look at that documentation to create an empty one manually by creating a legacy VTK file.

Re: [Paraview] cluster: works with -np 1, crashes when runs in parallel :-(

2011-11-04 Thread Sebastien Jourdain
Hi Stephane, Thanks for reporting it. In fact, that bug has been fixed in ParaView/next and you can simply avoid it if you compile ParaView in Release mode not in Debug.The problem come from an invalid test in an assert(). I will make sure that the fix will be in 3.12. Seb On Fri, Nov 4, 2011

Re: [Paraview] Bug? Paraview will load vrml 1.0 but cannot display

2011-11-25 Thread Sebastien Jourdain
I've just open that same file in a VRML viewer, and everything was black. Maybe, it's the content of the file that is not right ? On Thu, Nov 24, 2011 at 10:48 PM, Steve M. Robbins st...@sumost.ca wrote: Hi, The VTK parser class (vtkVRMLImporter) only handles VMRL 2.0.  I believe paraview

Re: [Paraview] ParaViewWeb TomCat

2011-11-29 Thread Sebastien Jourdain
Hi Randall, Can you be more specific by what you mean by standalone and by can't use Tomcat ? Because, for me tomcat can be standalone. Would you think something more embedded such as Jetty or something that does not involved Java at all ? Thanks, Seb On Tue, Nov 29, 2011 at 10:00 AM, Randall

Re: [Paraview] ParaViewWeb TomCat

2011-11-29 Thread Sebastien Jourdain
any higher-permissions to the system, with no access to /etc or /usr folders. Sebastien Jourdain wrote: Hi Randall, Can you be more specific by what you mean by standalone and by can't use Tomcat ? Because, for me tomcat can be standalone. Would you think something more embedded

Re: [Paraview] ParaViewWeb TomCat

2011-12-02 Thread Sebastien Jourdain
, at 12:26 PM, Sebastien Jourdain wrote: Hi Randall, This sounds good, so tomcat can easily be used on any user account with no right outside his home. You can even strip down the default package of tomcat so you get only the minimum required for ParaViewWeb and you can run it on any port

Re: [Paraview] ParaViewWeb TomCat

2011-12-03 Thread Sebastien Jourdain
Hi Chris, I respond directly in your mail As a first cut, I think it would be fine to have the engines write out their data.  Andy can correct me if I'm wrong, but I think we could use the co-processing to write just the subset of geometry and field data that we want to display in the

  1   2   3   4   5   6   >