[Paraview] Plugin XML Format Specification

2015-06-22 Thread Bruce Jones
Hi, I'm working on a custom plugin. I've managed to get the input parameters in the properties panel, and they appear to be working correctly. I would now like to split these properties into a couple of groups with a divider and title between, but I cannot see how this could be achieved. I have

Re: [Paraview] co-processing script with two datasource ...

2015-06-22 Thread Andy Bauer
I think you need inputdesc1 = datadescription.GetInputDescriptionByName(input) and datadescription.AddInput(input1) before you do cpscript.RequestDataDescription(datadescription). On Sat, Jun 20, 2015 at 4:15 PM, u.utku.turunco...@be.itu.edu.tr wrote: Hi, I am tying to run a ParaView pipeline

Re: [Paraview] Normal glyph

2015-06-22 Thread Yves Rogez
First of all : please use the paraview mailing list. Your questions could help someone else. 1. change the number of sample points in filter properties 2. select your geometry file - save data - choose stl format Yves Le 22/06/2015 12:11, Vishnubharathi T a écrit : You should find the normal

Re: [Paraview] co-processing script with two datasource ...

2015-06-22 Thread u . utku . turuncoglu
Hi, Thanks for your help. The driver is running with following code, datadescription = vtkCoProcessorPython.vtkCPDataDescription() datadescription.SetTimeData(time, step) datadescription.AddInput(AtmData1) cpscript.RequestDataDescription(datadescription) inputdesc1 =

Re: [Paraview] Plugin XML Format Specification

2015-06-22 Thread Bruce Jones
Thanks Utkarsh this is exactly what I'm looking for. Cheers, Bruce On Mon, 22 Jun 2015 at 14:57 Utkarsh Ayachit utkarsh.ayac...@kitware.com wrote: Bruce, Check the Properties Group information here: http://www.paraview.org/Wiki/ParaView/Properties_Panel#Property_Groups Utkarsh On Mon,

Re: [Paraview] Plugin XML Format Specification

2015-06-22 Thread Utkarsh Ayachit
Bruce, Check the Properties Group information here: http://www.paraview.org/Wiki/ParaView/Properties_Panel#Property_Groups Utkarsh On Mon, Jun 22, 2015 at 2:32 PM Bruce Jones bruce.david.jo...@gmail.com wrote: Hi, I'm working on a custom plugin. I've managed to get the input parameters in

Re: [Paraview] co-processing script with two datasource ...

2015-06-22 Thread Andy Bauer
Hi, You should look at the section on vtkCPDataDescription in the Catalyst User's Guide ( http://www.paraview.org/files/catalyst/docs/ParaViewCatalystUsersGuide_v2.pdf). You're adaptor code should look like: datadescription = vtkCoProcessorPython.vtkCPDataDescription()