Re: [Paraview] had to make up a value for selection: what am I doing wrong?

2008-09-05 Thread Utkarsh Ayachit
OSHIMA, Ph.D. Faculty of Engineering, Niigata University 8050 Ikarashi-Ninocho, Nishi-ku, Niigata, 950-2181, JAPAN From: Utkarsh Ayachit [EMAIL PROTECTED] Subject: Re: [Paraview] had to make up a value for selection: what am I doing wrong? Date: Mon, 04 Aug 2008 07:51:01 -0400 Mark, Thanks

Re: [Paraview] vtkScalars used in Paraview?

2008-09-10 Thread Utkarsh Ayachit
vtkScalars? Even VTK doesn't have such a class. Are you sure you have the correct name for the class you are looking for? Utkarsh Natalie Happenhofer wrote: Hi! Isn´t the vtk class vtkScalars used in Paraview? I didn´t find the .h or .cxx file for it. How can I add it, i.e. where do I place

Re: [Paraview] 3D view update issue

2008-09-15 Thread Utkarsh Ayachit
Is this on Mac? Berk and Dave D. have been seeing this on their Macs. Utkarsh Moreland, Kenneth wrote: Recently I have been noticing an update issue with the 3D views. For example, create a sphere source and hit apply. Nothing is shown in the 3D view until you click in it. Has anyone else

Re: [Paraview] Excluding properties from state files

2008-09-16 Thread Utkarsh Ayachit
Set 'is_internal=1' and that property won't be saved in the state file. It also means that it's default value won't be pushed on to the underlying VTK object when the proxy is created. If you change the value, however, then it will be pushed as usual. Utkarsh Paul Edwards wrote: Hi, Sorry

Re: [Paraview] python scripts

2008-09-24 Thread Utkarsh Ayachit
That's weird. from paraview import servermanager should work from all the 3 locations client, pvbatch or pvpython. Can you try the following script and print your path in all the three applications? import sys print sys.path Utkarsh Patrick Shinpaugh wrote: Hi, I've been writing some

Re: [Paraview] Calling a self made writer from a self made filter

2008-10-23 Thread Utkarsh Ayachit
Hey Rafael, First, you'll have to add a property to your filter to call the method that requests the writing as follows: SourceProxy name=MyFilter class=vtkMyFilter ... Property name=Save command=Save / ... /SourceProxy Then you have to create a custom object panel (look at

Re: [Paraview] Starting paraview with --server option

2008-10-24 Thread Utkarsh Ayachit
Guy, You'll have to setup the server configuration first from the GUI. Start paraview then choose File|Connect. In the Choose Server dialog you can set up your server configuration using Add Server and give it a name -- say myLocalHost. Then you can use the following: paraview

Re: [Paraview] Full screen mode

2008-10-27 Thread Utkarsh Ayachit
There's no way of doing that currently, but please feel free to add a feature request on the bug tracker at www.paraview.org/Bug Utkarsh Renato N. Elias wrote: Folks, does anybody know if it's possible to put ParaView in full screen mode? Maybe undocking the main screen, I don't know. I

Re: [Paraview] Poor movie quality (revisited)

2008-10-27 Thread Utkarsh Ayachit
-3.4.0_offscreen-UNCHECKED.avi ParaView-3.4.0 (Offscreen rendering for screenshots checked): http://www.nacad.ufrj.br/~rnelias/paraview/movies/pv-3.4.0_offscreen-CHECKED.avi ParaView-2.6.2: http://www.nacad.ufrj.br/~rnelias/paraview/movies/pv-2.6.2.avi What do you think? Renato. Utkarsh Ayachit

Re: [Paraview] How to start pvserver from python ?

2008-10-27 Thread Utkarsh Ayachit
There is no option to start a remote pvserver from python directly. But you can certainly use python's process management API to fork a new pvserver processes etc. Utkarsh Guy HUBERT wrote: Hello, Via paraview python servermanager, we can connect to a running pvserver with python. But, is

Re: [Paraview] unexpected behavior w/ Load State command

2008-11-13 Thread Utkarsh Ayachit
it.) -Ken From: [EMAIL PROTECTED] [EMAIL PROTECTED] On Behalf Of Utkarsh Ayachit [EMAIL PROTECTED] Sent: Tuesday, November 11, 2008 6:31 AM To: Geoff Draper Cc: paraview@paraview.org Subject: Re: [Paraview] unexpected behavior w/ Load State command Geoff, When

Re: [Paraview] Python Programmable Filter

2008-11-13 Thread Utkarsh Ayachit
Jacques, Couple of ways to solve your problem: * Solution One: If you don't want to deal with the fact that your data is a vtkMultiblockDataSet, apply the Merge Blocks filter after each of the Extract Block filters and then connect to the Programmable Filter to to the output from the Merge

Re: [Paraview] paraview 3.4 segmentation fault

2008-11-13 Thread Utkarsh Ayachit
That seems to be a bug in the 3D widget code. I've added a bug: http://paraview.org/Bug/view.php?id=8091 Utkarsh Jean Favre wrote: I have got a problem with very large data, bounding box is [0, 0, 0] [ 15e18, 15e18, 15e18] The Clip and Cutter filters (when created via the GUI) cause a seg

Re: [Paraview] : plot

2008-11-14 Thread Utkarsh Ayachit
advice... But my Disply menu is different (see picture attached)... How can I do? Il giorno ven, 14/11/2008 alle 12.21 -0500, Utkarsh Ayachit ha scritto: Samuele, Attached your file converted to a CSV file (I've remove all % and blank lines and make it a 3 column table). With CVS paraview you

Re: [Paraview] vtkSMProxy saving/restoring

2008-11-19 Thread Utkarsh Ayachit
Nehme, What properties are you changing/trying to restore? Is tempProxy of the same type as src? Utkarsh Nehme Bilal wrote: Hello, Sorry I missed a few commas in the last message. this is the correct one: I am looking for a way to save a proxy properties and restore it later. The only way

Re: [Paraview] vtkSMProxy saving/restoring

2008-11-19 Thread Utkarsh Ayachit
: vtkSMProxy tempProxy = vtkSMProxy::New(); I am trying to save/restore all the object properties displayed in the object inspector. On Wed, 19 Nov 2008 09:30:55 -0500 Utkarsh Ayachit [EMAIL PROTECTED] wrote: Nehme, What properties are you changing/trying to restore? Is tempProxy of the same type

Re: [Paraview] vtkSMProxy saving/restoring

2008-11-19 Thread Utkarsh Ayachit
the way that I'm casting the source proxy and some staff like that. I'll try to solve these problems and let you know. thank you ! On Wed, 19 Nov 2008 10:20:52 -0500 Utkarsh Ayachit [EMAIL PROTECTED] wrote: Here's one way of doing it: vtkSMProxyManager* pxm = vtkSMObject::GetProxyManager

Re: [Paraview] vtkSMProxy saving/restoring

2008-11-19 Thread Utkarsh Ayachit
objects when they are saved/restored. --Geoff On Wed, 19 Nov 2008, Utkarsh Ayachit wrote: What state loader are you using? If you use vtkSMPQStateLoader or subclass it should not try to reassing IDs. Utkarsh Geoff Draper wrote: Hello, I'm also facing a related problem when I save/restore

Re: [Paraview] vtkSMProxy saving/restoring

2008-11-19 Thread Utkarsh Ayachit
. thank you ! On Wed, 19 Nov 2008 10:20:52 -0500 Utkarsh Ayachit [EMAIL PROTECTED] wrote: Here's one way of doing it: vtkSMProxyManager* pxm = vtkSMObject::GetProxyManager(); vtkSMProxy *tempProxy = pxm-NewProxy( src-GetXMLGroup(), src-GetXMLName()); tempProxy-Copy(src); src-Copy

Re: [Paraview] vtkSMProxy saving/restoring

2008-11-19 Thread Utkarsh Ayachit
:27 -0500 Utkarsh Ayachit [EMAIL PROTECTED] wrote: For saving the object inspector properties you'll have to save/restore the state for the source proxy (and not merely it's representation proxy). Utkarsh Nehme Bilal wrote: Thank you Utkarsh ! it works but I have some problems like: - after

Re: [Paraview] reg file loading

2008-11-21 Thread Utkarsh Ayachit
What is the error you are getting? What version of ParaView are you using? Utkarsh L Susithra wrote: Hello, I've a data ( velocity fields, x,y,z for each node )from the simulation and i need to load it in paraview to visulaise the flow field. i converted the data as .csv from excel and when

Re: [Paraview] Why does this programmable source not work outside the paraview GUI

2008-11-21 Thread Utkarsh Ayachit
The answer is simple: you are missing the UpdateVTKObjects() call to 'apply' the change to the property. If you going to use ...GetProperty(..).SetElement(...) API then after the property has been set, one must call proxy.UpdateVTKObjects(). so in your example: ...

Re: [Paraview] error linking a plugin - dll

2008-11-21 Thread Utkarsh Ayachit
Make sure your header and cxx files look something like follows: vtkDataCalulator.h - #include vtkDataSetAlgorithm.h class VTK_EXPORT vtkDataCalculator : public vtkDataSetAlgorithm { public: static vtkDataCalculator* New(); vtkTypeRevisionMacro(vtkDataCalculator, vtkDataSetAlgorithm);

Re: [Paraview] Got programmable filter to work outside PV GUI - but still not programmable source

2008-11-21 Thread Utkarsh Ayachit
Please avoid changing the subject line for a continuing thread. It makes it easier to track the message thread. Thanks Utkarsh Louis at M-Tech wrote: Hi I got programmable filter to work outside the paraview GUI - but still not the programmable source; See the example below – if you want

Re: [Paraview] file-transfer in paraview -- pvserver

2008-12-04 Thread Utkarsh Ayachit
Jens, When operating in client-server mode (connected to a pvserver), ParaView can only open data files located on the server side (option c). The Open File is indeed browsing the server side directory structure when connection to a server node. Utkarsh Jens wrote: Hi, Can anyone tell me

Re: [Paraview] default_server.pvsc in PV-3.4.0

2008-12-08 Thread Utkarsh Ayachit
Ramesh, Try putting the file in under lib/paraview-3-4 (same location as paraview-real executable). Utkarsh On Fri, Nov 21, 2008 at 10:04 AM, Rakesh Hammond [EMAIL PROTECTED] wrote: Dear all, I am trying to use the default_server.pvsc file to load up profiles, which are site specifi rather

Re: [Paraview] reg file loading

2008-12-08 Thread Utkarsh Ayachit
Is it possible that your csv file has a blank line at the end? Anyways, currently there's currently no direct way of visualizing the data read in by CSV except in the spreadsheet view to simply look at the raw data (or plots in CVS paraview). You'll have to write a python programmable filter or

Re: [Paraview] Object Panel - Model Communication

2008-12-16 Thread Utkarsh Ayachit
To get back values from the server, you can use either information properties or information objects. Information properties are properites with information_only=1 set in the XML (eg. in Servers/ServerManager/Resources/rendering.xml the Camera proxy has CameraPositionInfo as an information

Re: [Paraview] bug in ParaView 3.4.0 server

2008-12-17 Thread Utkarsh Ayachit
Is there any error message shown on the server? Doesn't look like you are able to render on the server. Utkarsh On Wed, Dec 17, 2008 at 10:29 AM, Stephen Wornom stephen.wor...@sophia.inria.fr wrote: Utkarsh Ayachit wrote: Are there any error messages outputted on the server side? Can you try

Re: [Paraview] bug in ParaView 3.4.0 server

2008-12-17 Thread Utkarsh Ayachit
error messages. Utkarsh On Wed, Dec 17, 2008 at 11:51 AM, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: Is it possible for you to attach a debugger to the pvserver and provide the stack trace for where it crashes? My guess is it's failing when creating the render window. Utkarsh

Re: [Paraview] bug in ParaView 3.4.0 server

2008-12-17 Thread Utkarsh Ayachit
Is it possible for you to attach a debugger to the pvserver and provide the stack trace for where it crashes? My guess is it's failing when creating the render window. Utkarsh On Wed, Dec 17, 2008 at 11:43 AM, Stephen Wornom stephen.wor...@sophia.inria.fr wrote: Utkarsh Ayachit wrote

Re: [Paraview] bug in ParaView 3.4.0 server

2008-12-17 Thread Utkarsh Ayachit
Are there any error messages outputted on the server side? Can you try this: When connected to the server and looking at the outline (which you say is rendered fine) go to Edit|Settings. In the Options dialog open up the Render View tree on the left pane and select Server. There in the Remote

Re: [Paraview] Object Panel - Model Communication

2008-12-17 Thread Utkarsh Ayachit
model, through the Clip Filter. Is it possible to get the output of the Clip (that is, the nodes that weren't cutted off )from my custom filter code (which stays before the Clip filter in the pipeline) ? Regards, Rafael March. --- On Tue, 12/16/08, Utkarsh Ayachit utkarsh.ayac...@kitware.com

Re: [Paraview] How to visualize multipart/multiblock models

2008-12-18 Thread Utkarsh Ayachit
Currently there is no way to hide-show individual blocks in a multiblock dataset or assign colors to them. However, you can apply the Extract Block filter to extract each individual blocks and then apply colors to them or show/hide them. Utkarsh On Thu, Dec 18, 2008 at 6:15 AM, M. Nawijn

Re: [Paraview] Problem with ParaView 3.4 and additional Filter...

2008-12-19 Thread Utkarsh Ayachit
Stefan, Looks like you only loaded the xml for the filter. Loading of xml is fine when exposing filters already present in VTK but not available to ParaView GUI. The MyElevataionFilter.xml refers to a new filter class vtkMyElevationFilter which needs to be compiled. Hence simply loading xml is

Re: [Paraview] points and cells labels

2008-12-22 Thread Utkarsh Ayachit
One possible solution is to add the labels as a point data or cell data array of type vtkStringArray and then use the selection labeling mechanism to label with this string array. Utkarsh On Fri, Dec 19, 2008 at 6:04 PM, Nehme Bilal nbi...@mirarco.org wrote: Hello, Is it possible to put

Re: [Paraview] points and cells labels

2008-12-22 Thread Utkarsh Ayachit
. It will be perfect if I can select the points I want from inside the filter code, or simply select all points will help also. Thanks On Mon, 22 Dec 2008 09:16:43 -0500 Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: One possible solution is to add the labels as a point data or cell data

Re: [Paraview] Object Panel - Model Communication

2008-12-22 Thread Utkarsh Ayachit
Server, the nodes global id's. I'm taking a look at the vtkPVDataSetAttributesInformation class, but I don't think it will provide this information, am I right ? As a meta data, I can't get really the data, just some information about it... Regards, Rafael. --- On Wed, 12/17/08, Utkarsh Ayachit

Re: [Paraview] ClientDeliveryRepresentation

2008-12-22 Thread Utkarsh Ayachit
Look at vtkSMClientDeliveryStrategyProxy::UpdatePipelineInternal() that's where the data type is set on the data-transfer filter. BTW, ClientDeliverRepresentation cannot deliver 3D image data. It can only deliver 2D slices. Utkarsh On Mon, Dec 22, 2008 at 12:17 PM, jonathan grimm

Re: [Paraview] points and cells labels

2008-12-23 Thread Utkarsh Ayachit
I don't see any way of doing it through a filter. On Tue, Dec 23, 2008 at 10:08 AM, Nehme Bilal nbi...@mirarco.org wrote: Hi, Is this possible with C++ filter/reader or only in python/custom-app ? Nehme On Mon, 22 Dec 2008 09:32:51 -0500 Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote

Re: [Paraview] Warning in Paraview :

2008-12-30 Thread Utkarsh Ayachit
How are you getting this error? What are the actions that you performed to get this error? Utkarsh On Tue, Dec 30, 2008 at 11:34 AM, Chaman Singh Verma csv...@gmail.com wrote: Hello, I get the following warning or error when I use Paraview: Internal state of frames has got messed up! What

Re: [Paraview] Object Panel - Model Communication

2009-01-03 Thread Utkarsh Ayachit
; } The current code don't show anything in the GUI. I would like to see the content of volumesArray in a Table, List or a Tree widget. How can I do that ? Nehme From: Utkarsh Ayachit utkarsh.ayac...@kitware.com Subject: Re: [Paraview] Object Panel - Model Communication To: rafaelmar

Re: [Paraview] eternal Unknown CMake command QT4_WRAP_CPP. error

2009-01-07 Thread Utkarsh Ayachit
Jorge, First of, you cannot build new plugins using an installed ParaView (at for ParaView 3.4.* and earlier, it should work with CVS ParaView). You need to download the source and build ParaView from scartch. Then set the ParaView_DIR to the directory in which you've built ParaView. Utkarsh On

Re: [Paraview] calculator filter via python

2009-01-07 Thread Utkarsh Ayachit
Alas there's no way for the python programmable filter to ask for a particular timestep currently. This should be remedied soon. Feel free to add a bug report at: www.paraview.org/Bug Thanks Utkarsh On Fri, Jan 2, 2009 at 4:00 PM, Peter Brady petertbr...@gmail.com wrote: I don't think I can do

Re: [Paraview] Building Plugin PV3.5 (Newbie)

2009-01-07 Thread Utkarsh Ayachit
The plugins in the Examples directory can be built by turning on the BUILD_EXAMPLES cmake option. It's an advanced option so may not be visible by default in your cmake gui. Utkarsh On Thu, Jan 1, 2009 at 12:07 PM, bastil2...@yahoo.de bastil2...@yahoo.de wrote: Dear group, I try to build a

Re: [Paraview] How to visualize multipart/multiblock models

2009-01-07 Thread Utkarsh Ayachit
Jacques, Is this functionality for a custom application developed over ParaView or for a plugin extending standard ParaView? Utkarsh On Fri, Dec 19, 2008 at 5:00 AM, Jacques Papper jpap...@ara.co.uk wrote: Hi All, I have been thinking of a potential improvement for visualization of

Re: [Paraview] ClientDeliveryRepresentation

2009-01-07 Thread Utkarsh Ayachit
to make it support 3D Image data? Would a vtkImageDataStreamer solve this problem? On Mon, Dec 22, 2008 at 10:05 AM, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: Look at vtkSMClientDeliveryStrategyProxy::UpdatePipelineInternal() that's where the data type is set on the data-transfer

Re: [Paraview] Building Plugin PV3.5 (Newbie)

2009-01-07 Thread Utkarsh Ayachit
...@yahoo.de wrote: Sure. I have ssen that. However, I do not know how to handle new (own developed) plugins. How can they be build? Thanks. BastiL Utkarsh Ayachit schrieb: The plugins in the Examples directory can be built by turning on the BUILD_EXAMPLES cmake option. It's an advanced option

Re: [Paraview] eternal Unknown CMake command QT4_WRAP_CPP. error

2009-01-07 Thread Utkarsh Ayachit
, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: Add the following two lines to your CMakeLists and set the ParaView_DIR to point to the /Users/jmazo/ParaView-3.4.0/Build BEGIN= FIND_PACKAGE(ParaView REQUIRED) INCLUDE(${PARAVIEW_USE_FILE}) END Utkarsh On Wed, Jan 7, 2009 at 1:18

Re: [Paraview] Filter that acts only on selected nodes

2009-01-08 Thread Utkarsh Ayachit
Look at vtkExtractSelection. Similar to that, you'll have to create a 2 input filter whose one input is a vtkSelection with other is the data object to be selected. On Thu, Jan 8, 2009 at 9:43 AM, Rafael March rafaelmar...@yahoo.com wrote: Hey all, I want to program a filter - an algorithm -

Re: [Paraview] Adding custom chart view

2009-01-13 Thread Utkarsh Ayachit
Are you creating new new view for your filter, or do you want to simply show the output of the new filter in the current BarChart view used by the Histogram filter? If you are creating a totally new view, simply start by subclassing pqView. In the filter's XML you can use a hint as follows to

Re: [Paraview] removing domain constraints

2009-01-13 Thread Utkarsh Ayachit
Stephane, Unfortunately such more involved control for inheritance is not provided by ParaView, hence you'll have to go with copying the xml and changing it. The base_proxy mechanism is very simple (to say the least), it does not support overriding anything (including properties/domains) defined

Re: [Paraview] Csv files and time series

2009-01-14 Thread Utkarsh Ayachit
Francois, I've just committed a fix to the CVS head to make it possible to read a file-series of CSV files so that one can animate through them. Utkarsh On Wed, Jan 14, 2009 at 5:29 AM, Francois Beaubert francois.beaub...@univ-valenciennes.fr wrote: Hi all, I'm able to import some very

Re: [Paraview] how to control paraview from python

2009-01-15 Thread Utkarsh Ayachit
You cannot make an external python interpretor or pvpython control an separate paraview process. To be able to affect ParaView GUI through python you have to use the python shell provided by the GUI. Utkarsh On Wed, Jan 14, 2009 at 7:24 PM, Jorge Mario Mazo jmm.mecan...@gmail.com wrote: Hi

Re: [Paraview] python scripting - import cvs file

2009-01-15 Thread Utkarsh Ayachit
Where are you typing the python script: the python shell or the Script parameter for the Programmable Filter/Programmable Source? On Wed, Jan 14, 2009 at 7:17 PM, Pierre-Olivier Dallaire pierre-olivier.dalla...@videotron.ca wrote: Good evening, I'm trying to import a text file in order to

Re: [Paraview] GUIToolbar in python? or XML to python

2009-01-15 Thread Utkarsh Ayachit
Hi there is there a way to create a GUIToolbar icon in python * Not really. Python cannot be used to control/modify the GUI components per say. or is there to write a XML view, that trows the data parameters to a python script, instead of c++ classes, pretty much like the helix.xml plugin

Re: [Paraview] python scripting - import cvs file

2009-01-15 Thread Utkarsh Ayachit
the script in the Script entry box on the Paramaters panel. Utkarsh On Thu, Jan 15, 2009 at 9:44 AM, Pierre-Olivier Dallaire pierre-olivier.dalla...@videotron.ca wrote: python shell, I'm using pvpython script.py On 15-Jan-09, at 9:20 AM, Utkarsh Ayachit wrote: Where are you typing the python

Re: [Paraview] Calling a vtk filter from my custom filter

2009-01-15 Thread Utkarsh Ayachit
You can instantiate the vtkExtractEdges filter and connect it to shallow copy of your input (don't directly connect the input to avoid nasty pipleine update issues) and then call Update() on the vtkExtractEdges to make it execute. Then you can shallow copy vtkExtractEdges' output to your own or

Re: [Paraview] Changing Representation toolbar

2009-01-16 Thread Utkarsh Ayachit
Jerome, It's definitely possible using a plugin to create a new toolbar that acts as both the representation chooser as well as slice selector. Look at the toolbar plugin example on the Wiki and then look at pqDisplayRepresentationWidget ( in Qt/Components/pqDisplayRepresentationWidget.h|cxx) to

Re: [Paraview] [vtk-developers] vtkMultiBlockDataSet

2009-01-28 Thread Utkarsh Ayachit
That'd work. But it will copy other information (besides names), if any was well. You can explicitly get the value of vtkCompositeDataSet::NAME() key from the input meta-data and if present copy it to the output. if (input-GetMetaData(iblock)-Has(vtkCompositeDataSet::NAME())) {

Re: [Paraview] [paraview] difficulties understanding results of the curvature filter

2009-01-29 Thread Utkarsh Ayachit
Is it possible that the lookup table range is incorrect? Can you edit color table range to not be as high as 820. On Thu, Jan 29, 2009 at 5:15 AM, Pierre JUILLARD pierre.juill...@gmail.com wrote: Hi all, I have been using the curvature filter in ParaView on a test case. Curvature seems

Re: [Paraview] Paraview on a tiled display

2009-02-02 Thread Utkarsh Ayachit
, even the non-display ones, will be involved in the processing and parallel rendering work. -Ken On 1/30/09 11:43 AM, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: The number of processes must match the number of tiles (num of tiles = tdx * tdy). In your case you have 8 processes

Re: [Paraview] best way to update a custom reader

2009-02-03 Thread Utkarsh Ayachit
One possibility is to create a custom panel with a timer which periodically calls RequestInformation() to update the timesteps. Utkarsh On Thu, Jan 29, 2009 at 2:25 AM, Dominik Szczerba domi...@itis.ethz.ch wrote: Hi, What is the best way to update my custom reader? I have a complex pipeline

Re: [Paraview] How to know the type of a selection ?

2009-02-03 Thread Utkarsh Ayachit
First you'll need to locate the selection source proxy i.e. the proxy that is producing the vtkSelection. Look at pqSelectionManager::getIndices to see how to locate the selection source. The selection source proxy will have a property named FieldType. That can be used to determine if it's a cell

Re: [Paraview] Changing default representation for vtkImageData

2009-02-06 Thread Utkarsh Ayachit
Bryn, It's not possible to change the default representation. However, it's possible by wiring a plugin to do the same, would that help? Utkarsh On Fri, Feb 6, 2009 at 5:08 AM, Bryn Lloyd bll...@vision.ee.ethz.ch wrote: Hi, Is it possible to change the default representation of a given

Re: [Paraview] Losing data when clip multi-block

2009-02-06 Thread Utkarsh Ayachit
Eric, Does the loss of arrays happen even if you clip the orginal dataset by itself (without grouping it using the group filter)? Utkarsh On Wed, Feb 4, 2009 at 3:53 PM, Eric E. Monson emon...@cs.duke.edu wrote: Hello, I'm creating a multi-block data set using the group filter and then

Re: [Paraview] Changing default representation for vtkImageData

2009-02-06 Thread Utkarsh Ayachit
at the wikipage (Adding a new Representation), but it seemed too complicated for a small issue like this. -Bryn Utkarsh Ayachit wrote: Bryn, It's not possible to change the default representation. However, it's possible by wiring a plugin to do the same, would that help? Utkarsh

Re: [Paraview] [ParaView3-Developer] Locking (MPI?) problems with ParaView 3.5

2009-02-10 Thread Utkarsh Ayachit
John, Here's my understanding of what may be happening: * pvclient has done a gather data information and is waiting to receive that data * pvserver0 has received this gather data request is asking all satellites to gather data * pvserver1 also received that gather data request but before is

Re: [Paraview] [ParaView3-Developer] Locking (MPI?) problems with ParaView 3.5

2009-02-10 Thread Utkarsh Ayachit
Sweet. I've committed the patch to CVS. On Tue, Feb 10, 2009 at 10:45 AM, John Biddiscombe biddi...@cscs.ch wrote: Utkarsh Looks good. 10 out of 10 successes with the patch applied (using 5 to 10 pvserver nodes) - I'll try with more later when the rest of the machine is free. Thanks yet

Re: [Paraview] Browsing server files from plugin

2009-02-11 Thread Utkarsh Ayachit
To get the server: pqApplicationCore::instance()-getServerManagerModel()-getItemAtIndexpqServer*(0); Utkarsh On Tue, Feb 10, 2009 at 6:34 PM, Moreland, Kenneth kmo...@sandia.gov wrote: I have a plugin that adds toolbar actions. From one of these actions I want to be able to open a dialog box

Re: [Paraview] Why is PKdTree used for IMAGE Volume Rendering?

2009-02-12 Thread Utkarsh Ayachit
Do you have any unstructured data being rendering in the scene? KdTree is used to distribute that unstructured data in accordance with the partitions provided by the structured data. Utkarsh On Thu, Feb 12, 2009 at 2:09 PM, Kevin H. Hobbs hob...@ohiou.edu wrote: I just tried to use ParaView

Re: [Paraview] Why is PKdTree used for IMAGE Volume Rendering?

2009-02-12 Thread Utkarsh Ayachit
wrote: On Thu, 2009-02-12 at 14:26 -0500, Utkarsh Ayachit wrote: Do you have any unstructured data being rendering in the scene? No, just one big .vti image. ___ Powered by www.kitware.com Visit other Kitware open-source projects at http

Re: [Paraview] Why is PKdTree used for IMAGE Volume Rendering?

2009-02-12 Thread Utkarsh Ayachit
source). Utkarsh On Thu, Feb 12, 2009 at 3:24 PM, Kevin H. Hobbs hob...@ohiou.edu wrote: On Thu, 2009-02-12 at 14:56 -0500, Utkarsh Ayachit wrote: Kevin, The KdTree is still built (using the partitions from the structured dataset set itself -- hence isn't a very compute intensive task) just

Re: [Paraview] Why is PKdTree used for IMAGE Volume Rendering?

2009-02-12 Thread Utkarsh Ayachit
Kevin, Attached is a patch. Can you verify that it works after applying the patch? If so, I'll commit it to CVS. Thanks Utkarsh On Thu, Feb 12, 2009 at 4:45 PM, Kevin H. Hobbs hob...@ohiou.edu wrote: On Thu, 2009-02-12 at 15:34 -0500, Utkarsh Ayachit wrote: Ah and there's the bad news

Re: [Paraview] HyperOctree

2009-02-17 Thread Utkarsh Ayachit
There's already a bug http://paraview.org/Bug/view.php?id=5885 Utkarsh On Tue, Feb 17, 2009 at 8:57 AM, Berk Geveci berk.gev...@kitware.com wrote: I fixed the two octree filters. Selection seems to crash due to a bug in the octree class and it is probably not that easy to fix. Please submit a

Re: [Paraview] Current Pipeline instances.

2009-02-17 Thread Utkarsh Ayachit
QListpqPipelineSource* sources_and_filters = pqApplicationCore::instance()-getServerManagerModel()-findItemspqPipelineSource*(); Utkarsh On Tue, Feb 17, 2009 at 10:04 AM, Juan Fernando Duque Lombana jduqu...@eafit.edu.co wrote: Good day, I've been looking inside paraview sourcecode and yet I

Re: [Paraview] ParaView data

2009-02-18 Thread Utkarsh Ayachit
Yes you can: cvs -d :pserver:anon...@www.paraview.org:/cvsroot/ParaView3 co ParaViewData On Wed, Feb 18, 2009 at 6:52 AM, Paul Edwards paul.m.edwa...@gmail.com wrote: Can I checkout the paraview data from the CVS? There is only a link to the zipped up data on the website. I want to get all

Re: [Paraview] Parallel VTK

2009-02-19 Thread Utkarsh Ayachit
FYI, the [ParaView] in the subject line is added automatically by the mailing list, you don't have to add it explicitly. On Wed, Feb 18, 2009 at 1:58 PM, Samuele Zampini lelelel...@libero.it wrote: Hi all, I am trying to use this database (actually, I am attaching just an example) with the

Re: [Paraview] Changing the default volume mapper in Paraview?

2009-02-19 Thread Utkarsh Ayachit
I know it's kind of hacky, but you can simply edit the XML file and change the mapper used. Look at Servers/ServerManager/Resources/rendering.xml. In the XML for UniformGridVolumeRepresentation change FixedPointVolumeRayCastMapper to something else. Then after the definition for

Re: [Paraview] Getting proxy names from proxy manager.

2009-02-19 Thread Utkarsh Ayachit
The cout is never shown since GetProxyName() returns 0 for the second time around. A cleaner alternative would be to use the vtkSMProxyIterator to iterate over a group (using iter-Begin(sources)). Utkarsh On Wed, Feb 11, 2009 at 4:29 PM, Juan Fernando Duque Lombana jduqu...@eafit.edu.co wrote:

Re: [Paraview] Changing the default volume mapper in Paraview?

2009-02-19 Thread Utkarsh Ayachit
to select the volume mapper, but it looks like that combo box is not working. I know it used to work, does anyone know what happened? Pat On Thu, Feb 19, 2009 at 7:38 AM, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: I know it's kind of hacky, but you can simply edit the XML file

Re: [Paraview] Changing the default volume mapper in Paraview?

2009-02-19 Thread Utkarsh Ayachit
help. Biao On Thu, Feb 19, 2009 at 12:57 PM, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: Did you add a new proxy definition for the OpenGLVolumeTextureMapper3D proxy? Look at the definition for VolumeFixedPointRayCastMapper (it's further down in the file). You'll need to add

Re: [Paraview] Changing the default volume mapper in Paraview?

2009-02-20 Thread Utkarsh Ayachit
. But it doesn't work. On Fri, Feb 20, 2009 at 6:56 AM, Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: Have you tried just removing the property LockSampleDistanceToInputSpacing from the XML? Utkarsh On Thu, Feb 19, 2009 at 5:26 PM, Biao She sheb...@gmail.com wrote: Thanks very much for your

Re: [Paraview] Location widgets properties

2009-02-23 Thread Utkarsh Ayachit
Nehme, There's no easy way to do that. You'll have to use client-server streams and manipulate the server side representation object directly. Utkarsh On Sun, Feb 22, 2009 at 12:33 AM, Nehmé Bilal nehmebi...@gmail.com wrote: Hello, I have a plugin that use location widgets to manipulate

Re: [Paraview] Handshake failed :: but I'm using exactly the same CVS

2009-02-27 Thread Utkarsh Ayachit
Are you sure you updated with cvs up -dAP i.e. don't have any sticky tags on one (or both) of the machines? Look at vtkSocketCommunicator::GetVersion (in ParaView/VTK/Parallel/vtkSockeCommunicator.cxx) are both reporting the same version number? Utkarsh On Fri, Feb 27, 2009 at 10:16 AM,

Re: [Paraview] Handshake failed :: but I'm using exactly the same CVS

2009-02-27 Thread Utkarsh Ayachit
On Fri, Feb 27, 2009 at 4:19 PM, Ricardo Reis rr...@radiozero.pt wrote: On Fri, 27 Feb 2009, Utkarsh Ayachit wrote: Are you sure you updated with cvs up -dAP i.e. don't have any sticky tags on one (or both) of the machines? Look at vtkSocketCommunicator::GetVersion (in ParaView/VTK/Parallel

Re: [Paraview] animation of two datasets

2009-03-04 Thread Utkarsh Ayachit
I am confused. If you have 2 views open at the same time and try to save the animation, aren't you getting both the views saved in the animation? I just tried saving an animation with two 3D-Views, the resulting movie does indeed have both the views (attached is a frame from the movie). Utkarsh

Re: [Paraview] Graphical rendering: troubleshooting

2009-03-11 Thread Utkarsh Ayachit
What do you mean by you cannot visualize files? Does the main render window show up (with center axes and all)? Can you create one of the sources in the Sources menu and hit Apply, do you see the visualization correctly? Utkarsh On Wed, Mar 11, 2009 at 12:31 PM, Hugo Gagnon

Re: [Paraview] Better names for 'representations' ?

2009-03-12 Thread Utkarsh Ayachit
Eric, The request does seem reasonable. However, with the upcoming changes to the python API, it will provide better/nicer ways of locating representations irrespective of their names. So the naming issue would probably be redundant. Utkarsh On Wed, Mar 11, 2009 at 3:12 PM, Eric E. Monson

Re: [Paraview] pqLoadFromObjectPanel and implicit_functions

2009-03-12 Thread Utkarsh Ayachit
If your custom panel, put a frame or groupbox or some QWidget that you want to act as the container for this widget. Then simply create the pqProxySelectionWidget passing this frame as the parent. Look at pqNamedWidgets.cxx and search for pqSMAdaptor::PROXYSELECTION to see how this

Re: [Paraview] Feature request

2009-03-12 Thread Utkarsh Ayachit
Here's the link: http://paraview.org/Bug/ On Thu, Mar 12, 2009 at 9:40 AM, Renato Elias rnel...@gmail.com wrote: Just a suggestion: It would be great have the pipeline objects grouped when we have multiple views. Sometimes, when the pipeline is large, it's hard to find what object is in each

Re: [Paraview] Graphical rendering: troubleshooting

2009-03-12 Thread Utkarsh Ayachit
you create one of the sources in the Sources menu and hit Apply?: No, nothing appears. Do you see the visualization correctly?: No. Hugo. From: Utkarsh Ayachit [utkarsh.ayac...@kitware.com] Sent: Wednesday, March 11, 2009 2:02 PM To: Hugo Gagnon Cc

Re: [Paraview] Creating Animation in Paraview by Python scripting

2009-03-13 Thread Utkarsh Ayachit
Rouzbeh, I've attached an example script showing how to create a camera animation. This example simply orbits the camera about the focal point. Utkarsh On Tue, Mar 10, 2009 at 12:30 PM, Rouzbeh Maani rma...@win.trlabs.ca wrote: Hello everybody I want to create an animation by Python

Re: [Paraview] Graphical rendering: troubleshooting

2009-03-14 Thread Utkarsh Ayachit
From: Berk Geveci [berk.gev...@kitware.com] Sent: Friday, March 13, 2009 8:41 PM To: Hugo Gagnon Cc: Utkarsh Ayachit; paraview@paraview.org Subject: Re: [Paraview] Graphical rendering: troubleshooting What does the output of xdpyinfo look like? Is there a glxgears installed on your

Re: [Paraview] Rep plugin example?

2009-03-16 Thread Utkarsh Ayachit
Eric, Representation plugin needs a redesign/reimplementation before it can be used easily by the community. Until that happens, we are going to say that representation plugins are not fully supported. Utkarsh On Mon, Mar 16, 2009 at 9:14 AM, Eric E. Monson emon...@cs.duke.edu wrote: Hey,

Re: [Paraview] Qt4.5...

2009-03-23 Thread Utkarsh Ayachit
Make sure that your environment variable PATH is set to include the directory containing the Qt dlls. 2009/3/21 Hom Nath Gharti hng.em...@gmail.com: I tried to compile paraview from CVS with qt 4.5. Compilation is just fine. But when I run paraview I get the error Could not be located

Re: [Paraview] Transform surface independently from axes and boxes

2009-03-25 Thread Utkarsh Ayachit
Hopefully, I understand this correctly now. Just go to the Display tab. If you scroll lower, you'll see a transformation section. Apply the scale there. The scale will be applied to both the geometry as well as the annotation, while the annotation will keep on showing original data values.

Re: [Paraview] Transform surface independently from axes and boxes

2009-03-25 Thread Utkarsh Ayachit
not the transformed values, which are used for display. If I want the scale for both I can use the transform filter and manipulate the data directly but that is not what I want. Karl Original-Nachricht Datum: Wed, 25 Mar 2009 07:25:31 -0400 Von: Utkarsh Ayachit utkarsh.ayac

Re: [Paraview] pvpython, pvbatch error loading module?

2009-03-26 Thread Utkarsh Ayachit
Jean, I've just committed a fix for this issue. Let me know if it does not work. The new charting representations/views have Qt dependencies. Those needed to be disabled from the server manager XML as well when Qt support was not enabled. /cvsroot/ParaView3/ParaView3/vtkPVConfig.h.in,v --

Re: [Paraview] Multiple views with different timesteps

2009-03-26 Thread Utkarsh Ayachit
Renato, Currently there's no way to plot different timesteps in different views directly. An round-about way is to use the Temporal Shift Scale filter to shift the time for showing data in the second view such that the same global time maps to different timesteps in different views. Utkarsh

  1   2   3   4   5   6   7   8   9   10   >