Re: [Paraview] How to setup the version number of an XML plugin ?

2018-06-11 Thread Aron Helser
Hi! Looking here: https://www.paraview.org/Wiki/ParaView/Plugin_HowTo#Embedding_Python_Source_as_Modules it seems like you can specify the version number with CMakeLists.txt, but not with the XML file. HTH, Aron On Mon, Jun 11, 2018 at 3:57 AM, LB wrote: > Hi, > > I've defined a plugin that ga

Re: [Paraview] How to interrupt macros/Python script ?

2018-03-30 Thread Aron Helser
How does the debugger interact with python scripts in ParaView? In debugging stand-alone scripts, I'll often insert: import pdb; pdb.set_trace() to trigger the debugger. I suspect you might be able to use 'rdbg' and use that connection? -Aron On Fri, Mar 30, 2018 at 4:36 AM, Mathieu Westphal <

Re: [Paraview] ParaView-Superbuild Win10 Errors

2018-03-28 Thread Aron Helser
gt; the following output: > LINK : fatal error LNK1181: cannot open input file 'quat\quat.lib' > [158/254] Linking CXX shared library gpsnmealib\gpsnmea.dll > > I checked for quat.lib but there is only quat.dll in the superbuild > folder. Is there a flag to set for building

Re: [Paraview] ParaView-Superbuild Win10 Errors

2018-03-27 Thread Aron Helser
Jamil, Make sure you scroll up and find the first error - ninja is a parallel build system, so the build will continue on other threads after the first error. Then maybe you can solve that first error, and others will be fixed. It looks like an earlier error caused 'quat.lib' not to be built, but

Re: [Paraview] Conversion error

2018-03-20 Thread Aron Helser
Hi Nitisha, It's hard to know what the problem might be without knowing what steps you are taking to convert the files - please provide some more details. I would guess it's a problem in the conversion software, not ParaView. Regards, Aron On Mon, Mar 19, 2018 at 5:50 PM, Nitisha Ahuja wrote:

Re: [Paraview] Using ParaviewWeb examples

2018-02-19 Thread Aron Helser
> > -Tom > > On Mon, Feb 19, 2018 at 2:48 PM, Aron Helser > wrote: > >> Hi Tom, >> The ParaviewWeb examples always live in a sub-directory of the component >> they illustrate - so here, this is the Composite example, so '..' just >> refer

Re: [Paraview] Using ParaviewWeb examples

2018-02-19 Thread Aron Helser
Hi Tom, The ParaviewWeb examples always live in a sub-directory of the component they illustrate - so here, this is the Composite example, so '..' just refers to 'Composite'. If you look in the left menu, you can see that 'Composite' is grouped into ' Component/Native'. That's the directory it's in