Re: [Paraview] Running a simple example using ParaviewWeb

2017-08-09 Thread Léo Pessanha
So, I was able to build using 'paraviewweb/src/' and installing forcibly
mout, axios and hammerjs packages.

Now there's other js errors that I am going after like /plotly.js\ and
global reference ones !

It's definitely not a simple task to build an example of paraviewweb as a
standalone app.

Definitely will come back with updates.

Best regards,


Leonardo Pessanha
Laboratory of Computational Methods in Engineering
Federal University of Rio de Janeiro - COPPE
Rio de Janeiro, RJ, Brasil


2017-08-09 19:58 GMT-03:00 Léo Pessanha :

> So I am not sure of the first path yet. Is it 'paraviewweb/src/' or
> 'paraviewweb/src/Component'?
>
> I have the exactly same result using full path or starting with
> 'paraviewweb'
>
> Using:
>
> import CompositeComponent   from 'paraviewweb/src/';
>> import BGColorComponent from 'paraviewweb/src/Component/
>> Native/BackgroundColor';
>>
>
> Outputs a lot of:
>
> Module not found: Error: Can't resolve
>>
>
> So I did a 'npm list x' with x being the modules it couldn't
> resolve(axios, hammerjs and etc) and none of then was installed.
>
> root@PC:~/MyWebProject# npm list hammerjs
>> projeto1@0.0.1 /home/gabriel/MyWebProject
>> └── (empty)
>>
>> root@PC:~/MyWebProject# npm list axios
>> projeto1@0.0.1 /home/gabriel/MyWebProject
>> └── (empty)
>>
>
>
> Do you believe *npm install paraviewweb --save* and npm install *kw-web-suite
> --save-dev* failed installing the dependencies correctly?
>
> Best regards,
>
> Leonardo Pessanha
> Laboratory of Computational Methods in Engineering
> Federal University of Rio de Janeiro - COPPE
> Rio de Janeiro, RJ, Brasil
>
>
> 2017-08-09 19:38 GMT-03:00 Sebastien Jourdain  com>:
>
>> The import should start with 'paraviewweb' then you provide the full path
>> from there like:
>>
>> import BGColorComponent from 'paraviewweb/src/Component/Native/
>> BackgroundColor';
>>
>> On Wed, Aug 9, 2017 at 6:24 PM, Léo Pessanha <
>> leonardopessanh...@gmail.com> wrote:
>>
>>> Hi! I did the changes. The only thing I am not sure it's the right paths
>>> in the imports of ${ROOT}/src/index.js
>>>
>>> import CompositeComponent   from '..';
 import BGColorComponent from '../../BackgroundColor';


>>> Should I change this paths?
>>>
>>> I did try
>>>
>>> import CompositeComponent   from '/home/user/MyWebProject/node_
>>> modules/paraviewweb/src';
>>> import BGColorComponent from '/home/user/MyWebProject/node_
>>> modules/paraviewweb/src/Component/Native/BackgroundColor';
>>>
>>> and
>>>
>>> import CompositeComponent   from '/home/user/MyWebProject/node_
>>> modules/paraviewweb/src/Component';
>>> import BGColorComponent from '/home/user/MyWebProject/node_
>>> modules/paraviewweb/src/Component/Native/BackgroundColor';
>>>
>>> and
>>>
>>> import CompositeComponent   from '/home/user/MyWebProject/node_
>>> modules/paraviewweb/src/Component/Native';
>>> import BGColorComponent from '/home/user/MyWebProject/node_
>>> modules/paraviewweb/src/Component/Native/BackgroundColor';
>>>
>>> With the last 2 sucessfully building but with JS errors in Firefox
>>>
>>> TypeError: _Component2.default is not a constructor[Learn More]

>>>
>>> and
>>>
>>> TypeError: _Native2.default is not a constructor

>>>
>>> and the first one not building and giving me a lot of
>>>
>>> Module not found: Error: Can't resolve

>>>
>>>
>>> Thanks in advance!
>>>
>>>
>>> Leonardo Pessanha
>>> Laboratory of Computational Methods in Engineering
>>> Federal University of Rio de Janeiro - COPPE
>>> Rio de Janeiro, RJ, Brasil
>>>
>>>
>>> 2017-08-03 17:42 GMT-03:00 Sebastien Jourdain <
>>> sebastien.jourd...@kitware.com>:
>>>
 If I get to it, I'll do what I've done with vtk.js to support both.

 See: https://github.com/Kitware/vtk-js/blob/master/Utilities
 /config/dependency.js

 On Thu, Aug 3, 2017 at 1:49 PM, Léo Pessanha <
 leonardopessanh...@gmail.com> wrote:

> Thank you, Sebastien. I will give a try!
>
> Do you believe it's best to rollback webpack to 1.x or to change the
> webpack.config.js in order to fit webpack 2.x API?
>
> Leonardo Pessanha
> Laboratory of Computational Methods in Engineering
> Federal University of Rio de Janeiro - COPPE
> Rio de Janeiro, RJ, Brasil
>
>
> 2017-07-24 17:21 GMT-03:00 Sebastien Jourdain <
> sebastien.jourd...@kitware.com>:
>
>> Based on the path given in the setup guide, you should copy the
>> example you want to reproduce inside ${ROOT}/src/* where the main example
>> file should be named index.js.
>>
>> Then you should be able to build your example using the npm command:
>> "npm run build".
>>
>> Maybe the vtk.js explanation might be easier to follow (
>> https://kitware.github.io/vtk-js/docs/intro_vtk_as_es6_depe
>> ndency.html), but the concept is exactly the same.
>> As it is picking the example available here 

Re: [Paraview] Running a simple example using ParaviewWeb

2017-08-09 Thread Léo Pessanha
So I am not sure of the first path yet. Is it 'paraviewweb/src/' or
'paraviewweb/src/Component'?

I have the exactly same result using full path or starting with
'paraviewweb'

Using:

import CompositeComponent   from 'paraviewweb/src/';
> import BGColorComponent from
> 'paraviewweb/src/Component/Native/BackgroundColor';
>

Outputs a lot of:

Module not found: Error: Can't resolve
>

So I did a 'npm list x' with x being the modules it couldn't resolve(axios,
hammerjs and etc) and none of then was installed.

root@PC:~/MyWebProject# npm list hammerjs
> projeto1@0.0.1 /home/gabriel/MyWebProject
> └── (empty)
>
> root@PC:~/MyWebProject# npm list axios
> projeto1@0.0.1 /home/gabriel/MyWebProject
> └── (empty)
>


Do you believe *npm install paraviewweb --save* and npm install *kw-web-suite
--save-dev* failed installing the dependencies correctly?

Best regards,

Leonardo Pessanha
Laboratory of Computational Methods in Engineering
Federal University of Rio de Janeiro - COPPE
Rio de Janeiro, RJ, Brasil


2017-08-09 19:38 GMT-03:00 Sebastien Jourdain <
sebastien.jourd...@kitware.com>:

> The import should start with 'paraviewweb' then you provide the full path
> from there like:
>
> import BGColorComponent from 'paraviewweb/src/Component/Native/
> BackgroundColor';
>
> On Wed, Aug 9, 2017 at 6:24 PM, Léo Pessanha  > wrote:
>
>> Hi! I did the changes. The only thing I am not sure it's the right paths
>> in the imports of ${ROOT}/src/index.js
>>
>> import CompositeComponent   from '..';
>>> import BGColorComponent from '../../BackgroundColor';
>>>
>>>
>> Should I change this paths?
>>
>> I did try
>>
>> import CompositeComponent   from '/home/user/MyWebProject/node_
>> modules/paraviewweb/src';
>> import BGColorComponent from '/home/user/MyWebProject/node_
>> modules/paraviewweb/src/Component/Native/BackgroundColor';
>>
>> and
>>
>> import CompositeComponent   from '/home/user/MyWebProject/node_
>> modules/paraviewweb/src/Component';
>> import BGColorComponent from '/home/user/MyWebProject/node_
>> modules/paraviewweb/src/Component/Native/BackgroundColor';
>>
>> and
>>
>> import CompositeComponent   from '/home/user/MyWebProject/node_
>> modules/paraviewweb/src/Component/Native';
>> import BGColorComponent from '/home/user/MyWebProject/node_
>> modules/paraviewweb/src/Component/Native/BackgroundColor';
>>
>> With the last 2 sucessfully building but with JS errors in Firefox
>>
>> TypeError: _Component2.default is not a constructor[Learn More]
>>>
>>
>> and
>>
>> TypeError: _Native2.default is not a constructor
>>>
>>
>> and the first one not building and giving me a lot of
>>
>> Module not found: Error: Can't resolve
>>>
>>
>>
>> Thanks in advance!
>>
>>
>> Leonardo Pessanha
>> Laboratory of Computational Methods in Engineering
>> Federal University of Rio de Janeiro - COPPE
>> Rio de Janeiro, RJ, Brasil
>>
>>
>> 2017-08-03 17:42 GMT-03:00 Sebastien Jourdain <
>> sebastien.jourd...@kitware.com>:
>>
>>> If I get to it, I'll do what I've done with vtk.js to support both.
>>>
>>> See: https://github.com/Kitware/vtk-js/blob/master/Utilities
>>> /config/dependency.js
>>>
>>> On Thu, Aug 3, 2017 at 1:49 PM, Léo Pessanha <
>>> leonardopessanh...@gmail.com> wrote:
>>>
 Thank you, Sebastien. I will give a try!

 Do you believe it's best to rollback webpack to 1.x or to change the
 webpack.config.js in order to fit webpack 2.x API?

 Leonardo Pessanha
 Laboratory of Computational Methods in Engineering
 Federal University of Rio de Janeiro - COPPE
 Rio de Janeiro, RJ, Brasil


 2017-07-24 17:21 GMT-03:00 Sebastien Jourdain <
 sebastien.jourd...@kitware.com>:

> Based on the path given in the setup guide, you should copy the
> example you want to reproduce inside ${ROOT}/src/* where the main example
> file should be named index.js.
>
> Then you should be able to build your example using the npm command:
> "npm run build".
>
> Maybe the vtk.js explanation might be easier to follow (
> https://kitware.github.io/vtk-js/docs/intro_vtk_as_es6_dependency.html),
> but the concept is exactly the same.
> As it is picking the example available here https://kitware.github.io
> /vtk-js/examples/Cone.html | https://github.com/Kitware/v
> tk-js/tree/master/Examples/WebGL/Cone
> and making a standalone application from it.
>
> Just be aware that vtk.js is using webpack2 which is not the case for
> ParaViewWeb.
>
> Hope that helps,
>
> Seb
>
>
> On Mon, Jul 24, 2017 at 1:28 PM, Léo Pessanha <
> leonardopessanh...@gmail.com> wrote:
>
>> Hi!
>>
>> I would like to know the steps in order to run simple example like
>> the following one:
>>
>> https://kitware.github.io/paraviewweb/examples/Composite/index.html
>>
>> It doesn't need to be a really elaborated tutorial, but a simple one
>> with the 

Re: [Paraview] Running a simple example using ParaviewWeb

2017-08-09 Thread Sebastien Jourdain
The import should start with 'paraviewweb' then you provide the full path
from there like:

import BGColorComponent from 'paraviewweb/src/Component/Native/
BackgroundColor';

On Wed, Aug 9, 2017 at 6:24 PM, Léo Pessanha 
wrote:

> Hi! I did the changes. The only thing I am not sure it's the right paths
> in the imports of ${ROOT}/src/index.js
>
> import CompositeComponent   from '..';
>> import BGColorComponent from '../../BackgroundColor';
>>
>>
> Should I change this paths?
>
> I did try
>
> import CompositeComponent   from '/home/user/MyWebProject/node_
> modules/paraviewweb/src';
> import BGColorComponent from '/home/user/MyWebProject/node_
> modules/paraviewweb/src/Component/Native/BackgroundColor';
>
> and
>
> import CompositeComponent   from '/home/user/MyWebProject/node_
> modules/paraviewweb/src/Component';
> import BGColorComponent from '/home/user/MyWebProject/node_
> modules/paraviewweb/src/Component/Native/BackgroundColor';
>
> and
>
> import CompositeComponent   from '/home/user/MyWebProject/node_
> modules/paraviewweb/src/Component/Native';
> import BGColorComponent from '/home/user/MyWebProject/node_
> modules/paraviewweb/src/Component/Native/BackgroundColor';
>
> With the last 2 sucessfully building but with JS errors in Firefox
>
> TypeError: _Component2.default is not a constructor[Learn More]
>>
>
> and
>
> TypeError: _Native2.default is not a constructor
>>
>
> and the first one not building and giving me a lot of
>
> Module not found: Error: Can't resolve
>>
>
>
> Thanks in advance!
>
>
> Leonardo Pessanha
> Laboratory of Computational Methods in Engineering
> Federal University of Rio de Janeiro - COPPE
> Rio de Janeiro, RJ, Brasil
>
>
> 2017-08-03 17:42 GMT-03:00 Sebastien Jourdain  com>:
>
>> If I get to it, I'll do what I've done with vtk.js to support both.
>>
>> See: https://github.com/Kitware/vtk-js/blob/master/Utilities
>> /config/dependency.js
>>
>> On Thu, Aug 3, 2017 at 1:49 PM, Léo Pessanha <
>> leonardopessanh...@gmail.com> wrote:
>>
>>> Thank you, Sebastien. I will give a try!
>>>
>>> Do you believe it's best to rollback webpack to 1.x or to change the
>>> webpack.config.js in order to fit webpack 2.x API?
>>>
>>> Leonardo Pessanha
>>> Laboratory of Computational Methods in Engineering
>>> Federal University of Rio de Janeiro - COPPE
>>> Rio de Janeiro, RJ, Brasil
>>>
>>>
>>> 2017-07-24 17:21 GMT-03:00 Sebastien Jourdain <
>>> sebastien.jourd...@kitware.com>:
>>>
 Based on the path given in the setup guide, you should copy the example
 you want to reproduce inside ${ROOT}/src/* where the main example file
 should be named index.js.

 Then you should be able to build your example using the npm command:
 "npm run build".

 Maybe the vtk.js explanation might be easier to follow (
 https://kitware.github.io/vtk-js/docs/intro_vtk_as_es6_dependency.html),
 but the concept is exactly the same.
 As it is picking the example available here https://kitware.github.io
 /vtk-js/examples/Cone.html | https://github.com/Kitware/v
 tk-js/tree/master/Examples/WebGL/Cone
 and making a standalone application from it.

 Just be aware that vtk.js is using webpack2 which is not the case for
 ParaViewWeb.

 Hope that helps,

 Seb


 On Mon, Jul 24, 2017 at 1:28 PM, Léo Pessanha <
 leonardopessanh...@gmail.com> wrote:

> Hi!
>
> I would like to know the steps in order to run simple example like the
> following one:
>
> https://kitware.github.io/paraviewweb/examples/Composite/index.html
>
> It doesn't need to be a really elaborated tutorial, but a simple one
> with the main things.
> I have little to no background in web development.
>
> What I managed to do so far was to create my own project and add
> paraviewweb to it like its described in https://kitware.github.io/para
> viewweb/docs/setup.html .
>
> I don't know what to do next but I believe that a great start would be
> to know where to put the source code in the example and how to run it.
>
> Thanks in advance,
>
> Leonardo Pessanha
> Laboratory of Computational Methods in Engineering
> Federal University of Rio de Janeiro - COPPE
> Rio de Janeiro, RJ, Brasil
>
>
> ___
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at
> http://www.kitware.com/opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at:
> http://paraview.org/Wiki/ParaView
>
> Search the list archives at: http://markmail.org/search/?q=ParaView
>
> Follow this link to subscribe/unsubscribe:
> http://public.kitware.com/mailman/listinfo/paraview
>
>

 On Mon, Jul 24, 2017 at 1:28 PM, Léo Pessanha <
 

Re: [Paraview] Running a simple example using ParaviewWeb

2017-08-09 Thread Léo Pessanha
Hi! I did the changes. The only thing I am not sure it's the right paths in
the imports of ${ROOT}/src/index.js

import CompositeComponent   from '..';
> import BGColorComponent from '../../BackgroundColor';
>
>
Should I change this paths?

I did try

import CompositeComponent   from
'/home/user/MyWebProject/node_modules/paraviewweb/src';
import BGColorComponent from
'/home/user/MyWebProject/node_modules/paraviewweb/src/Component/Native/BackgroundColor';

and

import CompositeComponent   from
'/home/user/MyWebProject/node_modules/paraviewweb/src/Component';
import BGColorComponent from
'/home/user/MyWebProject/node_modules/paraviewweb/src/Component/Native/BackgroundColor';

and

import CompositeComponent   from
'/home/user/MyWebProject/node_modules/paraviewweb/src/Component/Native';
import BGColorComponent from
'/home/user/MyWebProject/node_modules/paraviewweb/src/Component/Native/BackgroundColor';

With the last 2 sucessfully building but with JS errors in Firefox

TypeError: _Component2.default is not a constructor[Learn More]
>

and

TypeError: _Native2.default is not a constructor
>

and the first one not building and giving me a lot of

Module not found: Error: Can't resolve
>


Thanks in advance!


Leonardo Pessanha
Laboratory of Computational Methods in Engineering
Federal University of Rio de Janeiro - COPPE
Rio de Janeiro, RJ, Brasil


2017-08-03 17:42 GMT-03:00 Sebastien Jourdain <
sebastien.jourd...@kitware.com>:

> If I get to it, I'll do what I've done with vtk.js to support both.
>
> See: https://github.com/Kitware/vtk-js/blob/master/
> Utilities/config/dependency.js
>
> On Thu, Aug 3, 2017 at 1:49 PM, Léo Pessanha  > wrote:
>
>> Thank you, Sebastien. I will give a try!
>>
>> Do you believe it's best to rollback webpack to 1.x or to change the
>> webpack.config.js in order to fit webpack 2.x API?
>>
>> Leonardo Pessanha
>> Laboratory of Computational Methods in Engineering
>> Federal University of Rio de Janeiro - COPPE
>> Rio de Janeiro, RJ, Brasil
>>
>>
>> 2017-07-24 17:21 GMT-03:00 Sebastien Jourdain <
>> sebastien.jourd...@kitware.com>:
>>
>>> Based on the path given in the setup guide, you should copy the example
>>> you want to reproduce inside ${ROOT}/src/* where the main example file
>>> should be named index.js.
>>>
>>> Then you should be able to build your example using the npm command:
>>> "npm run build".
>>>
>>> Maybe the vtk.js explanation might be easier to follow (
>>> https://kitware.github.io/vtk-js/docs/intro_vtk_as_es6_dependency.html),
>>> but the concept is exactly the same.
>>> As it is picking the example available here https://kitware.github.io
>>> /vtk-js/examples/Cone.html | https://github.com/Kitware/v
>>> tk-js/tree/master/Examples/WebGL/Cone
>>> and making a standalone application from it.
>>>
>>> Just be aware that vtk.js is using webpack2 which is not the case for
>>> ParaViewWeb.
>>>
>>> Hope that helps,
>>>
>>> Seb
>>>
>>>
>>> On Mon, Jul 24, 2017 at 1:28 PM, Léo Pessanha <
>>> leonardopessanh...@gmail.com> wrote:
>>>
 Hi!

 I would like to know the steps in order to run simple example like the
 following one:

 https://kitware.github.io/paraviewweb/examples/Composite/index.html

 It doesn't need to be a really elaborated tutorial, but a simple one
 with the main things.
 I have little to no background in web development.

 What I managed to do so far was to create my own project and add
 paraviewweb to it like its described in https://kitware.github.io/para
 viewweb/docs/setup.html .

 I don't know what to do next but I believe that a great start would be
 to know where to put the source code in the example and how to run it.

 Thanks in advance,

 Leonardo Pessanha
 Laboratory of Computational Methods in Engineering
 Federal University of Rio de Janeiro - COPPE
 Rio de Janeiro, RJ, Brasil


 ___
 Powered by www.kitware.com

 Visit other Kitware open-source projects at
 http://www.kitware.com/opensource/opensource.html

 Please keep messages on-topic and check the ParaView Wiki at:
 http://paraview.org/Wiki/ParaView

 Search the list archives at: http://markmail.org/search/?q=ParaView

 Follow this link to subscribe/unsubscribe:
 http://public.kitware.com/mailman/listinfo/paraview


>>>
>>> On Mon, Jul 24, 2017 at 1:28 PM, Léo Pessanha <
>>> leonardopessanh...@gmail.com> wrote:
>>>
 Hi!

 I would like to know the steps in order to run simple example like the
 following one:

 https://kitware.github.io/paraviewweb/examples/Composite/index.html

 It doesn't need to be a really elaborated tutorial, but a simple one
 with the main things.
 I have little to no background in web development.

 What I managed to do so far was to create my own project and add
 

Re: [Paraview] [vtkusers] SafeDownCast does not work properly

2017-08-09 Thread Utkarsh Ayachit
Maximilian,

That's not a reasonable expectation. Mesh **isa** vtkPolyData, and not
vice-versa. Look at docs for dynamic_cast in C++. In spirit, SafeDownCast
is essentially the same thing.

Utkarsh

On Wed, Aug 9, 2017 at 2:12 PM, Maximilian Weiherer <
weiherer.maximil...@gmx.de> wrote:

> Hi Utkarsh,
>
>
>
> thanks for your reply. I created the custom mesh class in order to add
> some new functionality (e.g. a method to check whether a mesh intersects
> another mesh). The vtkPolyData object which should be casted is the output
> of a vtkSTLReader, i.e.
>
> Mesh* mesh = Mesh::SafeDownCast(reader->GetOutput()); // mesh always
> equals NULL
>
> Best regards
>
> Maximilian
>
>
>
> *Von:* Utkarsh Ayachit [mailto:utkarsh.ayac...@kitware.com]
> *Gesendet:* Mittwoch, 9. August 2017 17:53
> *An:* Maximilian Weiherer 
> *Cc:* vtk 
> *Betreff:* Re: [vtkusers] SafeDownCast does not work properly
>
>
>
> Maximilian,
>
>
>
> I am confused why any arbitrary vtkPolyData object would be castable to
> "Mesh". It will only return non-null, if it's is indeed created as a Mesh.
> Is it? Where's the "" coming from?
>
>
>
> Utkarsh
>
>
>
> On Wed, Aug 9, 2017 at 11:50 AM, Maximilian Weiherer <
> weiherer.maximil...@gmx.de> wrote:
>
> Hi all,
>
>
>
> I defined my own mesh class (named *Mesh*) by inheriting from
> vtkPolyData. Now I am struggling with the SafeDownCast method in order to
> cast a vtkPolyData object into a *Mesh* object. Whenever I am applying a
> SafeDownCast to a vtkPolyData object, NULL is returned.
>
>
>
> The *Mesh* class looks as follows:
>
>
>
> class Mesh : public vtkPolyData
>
> {
>
>   public:
>
> static Mesh* New();
>
> vtkTypeMacro(Mesh, vtkPolyData);
>
> void PrintSelf(ostream& os, vtkIndent indent);
>
>
>
>   protected:
>
> Mesh();
>
> ~Mesh();
>
>   private:
>
> Mesh(const Mesh&); // Not implemented.
>
> void operator=(const Mesh&); // Not implemented.
>
> };
>
>
>
> …and this is the cast that does not work properly:
>
>
>
> Mesh* mesh = Mesh::SafeDownCast(); // mesh always
> equals NULL
>
>
>
> Any help would be appreciated. Thanks!
>
>
>
> Best regards
>
> Maximilian
>
>
>
> [image: Das Bild wurde vom Absender entfernt.]
> 
>
> Virenfrei. www.avast.com
> 
>
>
> ___
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at http://www.kitware.com/
> opensource/opensource.html
>
> Please keep messages on-topic and check the VTK FAQ at:
> http://www.vtk.org/Wiki/VTK_FAQ
>
> Search the list archives at: http://markmail.org/search/?q=vtkusers
>
> Follow this link to subscribe/unsubscribe:
> http://public.kitware.com/mailman/listinfo/vtkusers
>
>
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


[Paraview] Rendering/Screenshot with "deep color" (REPOST)

2017-08-09 Thread Jonathan Borduas
Dear Paraviewers,

As seen in the attached image, we can see the transitions between the different 
grays that occur with a 24bits-per-pixel screenshot export of ParaView.
While most image editing software and printer support 32bits-per-pixel such as 
Ms Paint and Photoshop.

Most GPU manufacturers call that "deep color". Some display already have 
30bpp/10bpc.

Is there a setting available to configure the image bit depth (Bit Per Pixel, 
Bit Per Channel) in ParaView ?
If no, is there any short time plans to integrate the control over the bit 
depth ?

Best regards,

Jonathan Borduas

___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] ParaviewWeb on EC2

2017-08-09 Thread Sebastien Jourdain
If you just want to run it on your desktop, just download a ParaView binary
and you will be all set.

The only thing with Ubuntu 16, is that the documentation explaining how to
make services and configure apache might be slightly off.
Also the ansible provisioning script won't work, but everything can be done
by hand without too much issue.

Seb

On Wed, Aug 9, 2017 at 12:19 PM, Evans, Llion  wrote:

> Ok, thanks. I guess to get it to work on the free tier I’d need to rebuild
> with mesa. I’d rather not go down that path as I’m not knowledgeable enough.
>
>
>
> That means I need to go back to trying to install on my local machine, but
> I was having difficulty getting Visualizer to start properly on Ubuntu 16.
>
>
>
> I notice you mentioned a compatibility issue with 16. Will this work on a
> VM? If so, I could try copying some of the file structure from the AMI to a
> fresh Ubuntu 14 VM install?
>
>
>
> Llion
>
>
>
> *From:* Sebastien Jourdain [mailto:sebastien.jourd...@kitware.com]
> *Sent:* 09 August 2017 17:07
>
> *To:* Evans, Llion
> *Cc:* paraview@paraview.org
> *Subject:* Re: [Paraview] ParaviewWeb on EC2
>
>
>
> Yes, you need a g2
>
>
>
> On Wed, Aug 9, 2017 at 10:10 AM, Evans, Llion 
> wrote:
>
> I found the error below (there was a new entry for each time I refreshed
> the page on the browser).
>
>
>
> ERROR: In /home/kitware/Dashboards/buildbot/paraview-debian4dash-
> linux-shared-release_qt4_superbuild/source-paraview/VTK/Rendering/OpenGL/vtkXOpenGLRenderWindow.cxx,
> line 333
>
> vtkXOpenGLRenderWindow (0x64982b0): bad X server connection. DISPLAY=:0.0.
> Aborting.
>
>
>
> I assume that this is due to my choice of machine (i.e. using the aws free
> tier which doesn’t have a gpu).
>
>
>
> Llion
>
>
>
> *From:* Sebastien Jourdain [mailto:sebastien.jourd...@kitware.com]
> *Sent:* 09 August 2017 14:48
> *To:* Evans, Llion
> *Cc:* paraview@paraview.org
> *Subject:* Re: [Paraview] ParaviewWeb on EC2
>
>
>
> Did you look at the logs on the server to see if you could have some hints
> on what could be the issue?
>
>
>
> On Wed, Aug 9, 2017 at 8:32 AM, Evans, Llion  wrote:
>
> Hi Seb/Claude,
>
> Hopefully this should be an easy answer.
>
> I’ve been trying to get Visualizer up and running on aws. I used the ami
> mentioned below (ami-34f3f65e) and can load the page in a browser which
> brings up the 'ParaViewWeb' logo and a spinning cog. After a short while I
> get an error message 'Session did not start before timeout expired. Check
> session logs.'
>
> Other than installing a local browser I've not changed much of anything on
> the AMI. What am I doing wrong? I assume it's something simple that I'm
> missing, like do I need to drop in a dataset somewhere before it'll even
> load the page?
>
> Kind regards,
> Llion
> ___
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at http://www.kitware.com/
> opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at:
> http://paraview.org/Wiki/ParaView
>
> Search the list archives at: http://markmail.org/search/?q=ParaView
>
> Follow this link to subscribe/unsubscribe:
> http://public.kitware.com/mailman/listinfo/paraview
>
>
>
>
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] ParaviewWeb on EC2

2017-08-09 Thread Evans, Llion
Ok, thanks. I guess to get it to work on the free tier I’d need to rebuild with 
mesa. I’d rather not go down that path as I’m not knowledgeable enough.

That means I need to go back to trying to install on my local machine, but I 
was having difficulty getting Visualizer to start properly on Ubuntu 16.

I notice you mentioned a compatibility issue with 16. Will this work on a VM? 
If so, I could try copying some of the file structure from the AMI to a fresh 
Ubuntu 14 VM install?

Llion

From: Sebastien Jourdain [mailto:sebastien.jourd...@kitware.com]
Sent: 09 August 2017 17:07
To: Evans, Llion
Cc: paraview@paraview.org
Subject: Re: [Paraview] ParaviewWeb on EC2

Yes, you need a g2

On Wed, Aug 9, 2017 at 10:10 AM, Evans, Llion 
> wrote:
I found the error below (there was a new entry for each time I refreshed the 
page on the browser).

ERROR: In 
/home/kitware/Dashboards/buildbot/paraview-debian4dash-linux-shared-release_qt4_superbuild/source-paraview/VTK/Rendering/OpenGL/vtkXOpenGLRenderWindow.cxx,
 line 333
vtkXOpenGLRenderWindow (0x64982b0): bad X server connection. DISPLAY=:0.0. 
Aborting.

I assume that this is due to my choice of machine (i.e. using the aws free tier 
which doesn’t have a gpu).

Llion

From: Sebastien Jourdain 
[mailto:sebastien.jourd...@kitware.com]
Sent: 09 August 2017 14:48
To: Evans, Llion
Cc: paraview@paraview.org
Subject: Re: [Paraview] ParaviewWeb on EC2

Did you look at the logs on the server to see if you could have some hints on 
what could be the issue?

On Wed, Aug 9, 2017 at 8:32 AM, Evans, Llion 
> wrote:
Hi Seb/Claude,

Hopefully this should be an easy answer.

I’ve been trying to get Visualizer up and running on aws. I used the ami 
mentioned below (ami-34f3f65e) and can load the page in a browser which brings 
up the 'ParaViewWeb' logo and a spinning cog. After a short while I get an 
error message 'Session did not start before timeout expired. Check session 
logs.'

Other than installing a local browser I've not changed much of anything on the 
AMI. What am I doing wrong? I assume it's something simple that I'm missing, 
like do I need to drop in a dataset somewhere before it'll even load the page?

Kind regards,
Llion
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] ParaviewWeb on EC2

2017-08-09 Thread Sebastien Jourdain
Yes, you need a g2

On Wed, Aug 9, 2017 at 10:10 AM, Evans, Llion  wrote:

> I found the error below (there was a new entry for each time I refreshed
> the page on the browser).
>
>
>
> ERROR: In /home/kitware/Dashboards/buildbot/paraview-debian4dash-
> linux-shared-release_qt4_superbuild/source-paraview/VTK/Rendering/OpenGL/vtkXOpenGLRenderWindow.cxx,
> line 333
>
> vtkXOpenGLRenderWindow (0x64982b0): bad X server connection. DISPLAY=:0.0.
> Aborting.
>
>
>
> I assume that this is due to my choice of machine (i.e. using the aws free
> tier which doesn’t have a gpu).
>
>
>
> Llion
>
>
>
> *From:* Sebastien Jourdain [mailto:sebastien.jourd...@kitware.com]
> *Sent:* 09 August 2017 14:48
> *To:* Evans, Llion
> *Cc:* paraview@paraview.org
> *Subject:* Re: [Paraview] ParaviewWeb on EC2
>
>
>
> Did you look at the logs on the server to see if you could have some hints
> on what could be the issue?
>
>
>
> On Wed, Aug 9, 2017 at 8:32 AM, Evans, Llion  wrote:
>
> Hi Seb/Claude,
>
> Hopefully this should be an easy answer.
>
> I’ve been trying to get Visualizer up and running on aws. I used the ami
> mentioned below (ami-34f3f65e) and can load the page in a browser which
> brings up the 'ParaViewWeb' logo and a spinning cog. After a short while I
> get an error message 'Session did not start before timeout expired. Check
> session logs.'
>
> Other than installing a local browser I've not changed much of anything on
> the AMI. What am I doing wrong? I assume it's something simple that I'm
> missing, like do I need to drop in a dataset somewhere before it'll even
> load the page?
>
> Kind regards,
> Llion
> ___
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at http://www.kitware.com/
> opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at:
> http://paraview.org/Wiki/ParaView
>
> Search the list archives at: http://markmail.org/search/?q=ParaView
>
> Follow this link to subscribe/unsubscribe:
> http://public.kitware.com/mailman/listinfo/paraview
>
>
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


[Paraview] Fwd: add dataset names as a field to the groupdataset

2017-08-09 Thread Shayan Nikoohemat
Is it possible automatically assign block numbers in a group data set to a
new field and replace them with each data set name?

For example I have data sets of points: wall1, wall2 , ceiling, floor and
then I make a group dataset:
groupDatasets1 = GroupDatasets(Input=[wall_1, floor_1, ceiling_1, wall_2])

Then I have below spread sheet:
[image: Inline image 1]

Then I need to make a new field e.g. "groups" (better through a
programmable filter) and for each group I add the name of the dataset. The
expected result table would looks like this:

BlockNumber, Point ID, vtkPointId, Points, Label, Label2, Groups
1, 0, 36617,..., ..., ... , ...,
..
 wall_1
1, 1 , 420914, ..., ..., ... , ...,
..
 wall_1
1, 2, 444161,  ..., ..., ... , ...,
..
 wall_1
2, 0, 27932,..., ..., ... , ...,  ...
..
 ceiling
2, 1 , 296452, ..., ..., ... , ...,  ...
.
 ceiling
2, 2, 315135,  ..., ..., ... , ...,  ...

  ceiling
3, 0, 36617,..., ..., ... , ...,  ...
.
  wall_2
3, 1 , 420914, ..., ..., ... , ...,  ...
.
  wall_2

So my question has two parts:
1. How do we automatically group datasets in the pipeline browser?
2. While grouping, how to add a field as an attribute that contains the
datasets names.

Then I can save this spreadsheet for later use.

Thanks for any help.

Shayan
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] ParaviewWeb on EC2

2017-08-09 Thread Evans, Llion
I found the error below (there was a new entry for each time I refreshed the 
page on the browser).

ERROR: In 
/home/kitware/Dashboards/buildbot/paraview-debian4dash-linux-shared-release_qt4_superbuild/source-paraview/VTK/Rendering/OpenGL/vtkXOpenGLRenderWindow.cxx,
 line 333
vtkXOpenGLRenderWindow (0x64982b0): bad X server connection. DISPLAY=:0.0. 
Aborting.

I assume that this is due to my choice of machine (i.e. using the aws free tier 
which doesn’t have a gpu).

Llion

From: Sebastien Jourdain [mailto:sebastien.jourd...@kitware.com]
Sent: 09 August 2017 14:48
To: Evans, Llion
Cc: paraview@paraview.org
Subject: Re: [Paraview] ParaviewWeb on EC2

Did you look at the logs on the server to see if you could have some hints on 
what could be the issue?

On Wed, Aug 9, 2017 at 8:32 AM, Evans, Llion 
> wrote:
Hi Seb/Claude,

Hopefully this should be an easy answer.

I’ve been trying to get Visualizer up and running on aws. I used the ami 
mentioned below (ami-34f3f65e) and can load the page in a browser which brings 
up the 'ParaViewWeb' logo and a spinning cog. After a short while I get an 
error message 'Session did not start before timeout expired. Check session 
logs.'

Other than installing a local browser I've not changed much of anything on the 
AMI. What am I doing wrong? I assume it's something simple that I'm missing, 
like do I need to drop in a dataset somewhere before it'll even load the page?

Kind regards,
Llion
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview

___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] Paraview source and its associated qt version

2017-08-09 Thread Cory Quammen
On Wed, Aug 9, 2017 at 5:34 AM, Andrew Nicholson
 wrote:
> Cory,
>
> Thanks for the info. Is there anywhere I can find this out when I download
> the source?

At the point of download? We don't list required versions on the
downloads page I'm afraid. We do list some of the dependent library
versions in the official binaries on this page:
https://www.paraview.org/Wiki/ParaView/Binaries

Qt version requirements are available in the source, though. See
Documentation/dev/build.md.

CMake will also tell you which version of Qt it finds when you
configure the ParaView build, and which Qt version is officially
recommended.

Cory

> Thanks
> Andrew
>
>
> On Tuesday, 8 August 2017, Cory Quammen  wrote:
>>
>> Andrew,
>>
>> The officially supported version of Qt is 5.9, but you could use down
>> to Qt 5.6 if you wanted.
>>
>> Best,
>> Cory
>>
>> On Tue, Aug 8, 2017 at 4:25 PM, Andrew Nicholson
>>  wrote:
>> > Is there anywhere that highlights what version of qt should be used for
>> > building from source? Current version of qt being 5.9 from its website.
>> > Is
>> > paraview on this version yet or an older version.
>> > ___
>> > Powered by www.kitware.com
>> >
>> > Visit other Kitware open-source projects at
>> > http://www.kitware.com/opensource/opensource.html
>> >
>> > Please keep messages on-topic and check the ParaView Wiki at:
>> > http://paraview.org/Wiki/ParaView
>> >
>> > Search the list archives at: http://markmail.org/search/?q=ParaView
>> >
>> > Follow this link to subscribe/unsubscribe:
>> > http://public.kitware.com/mailman/listinfo/paraview
>> >
>>
>>
>>
>> --
>> Cory Quammen
>> Staff R Engineer
>> Kitware, Inc.



-- 
Cory Quammen
Staff R Engineer
Kitware, Inc.
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] ParaviewWeb on EC2

2017-08-09 Thread Sebastien Jourdain
Did you look at the logs on the server to see if you could have some hints
on what could be the issue?

On Wed, Aug 9, 2017 at 8:32 AM, Evans, Llion  wrote:

> Hi Seb/Claude,
>
> Hopefully this should be an easy answer.
>
> I’ve been trying to get Visualizer up and running on aws. I used the ami
> mentioned below (ami-34f3f65e) and can load the page in a browser which
> brings up the 'ParaViewWeb' logo and a spinning cog. After a short while I
> get an error message 'Session did not start before timeout expired. Check
> session logs.'
>
> Other than installing a local browser I've not changed much of anything on
> the AMI. What am I doing wrong? I assume it's something simple that I'm
> missing, like do I need to drop in a dataset somewhere before it'll even
> load the page?
>
> Kind regards,
> Llion
> ___
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at http://www.kitware.com/
> opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at:
> http://paraview.org/Wiki/ParaView
>
> Search the list archives at: http://markmail.org/search/?q=ParaView
>
> Follow this link to subscribe/unsubscribe:
> http://public.kitware.com/mailman/listinfo/paraview
>
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] ParaviewWeb on EC2

2017-08-09 Thread Evans, Llion
Hi Seb/Claude,

Hopefully this should be an easy answer.

I’ve been trying to get Visualizer up and running on aws. I used the ami 
mentioned below (ami-34f3f65e) and can load the page in a browser which brings 
up the 'ParaViewWeb' logo and a spinning cog. After a short while I get an 
error message 'Session did not start before timeout expired. Check session 
logs.'

Other than installing a local browser I've not changed much of anything on the 
AMI. What am I doing wrong? I assume it's something simple that I'm missing, 
like do I need to drop in a dataset somewhere before it'll even load the page?

Kind regards,
Llion
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


[Paraview] Question about plugins with Catalyst and Python scripts

2017-08-09 Thread yvan . fournier
Hello,

We have been using Catalyst (with Python coprocessing scripts) in our code for 
quite a while now, and am trying to see how to make thing more user-friendly.

One of the main issues we have is that if plugins are loaded in ParaView when 
using the Coprocessing Generator plugin, extra lines regarding those plugins 
may appear in the script, even when not dreclty used. For example, when the 
PointSprite plugins is enabled in PV 5.1, it adds opacity transfer function 
informations. This particular example might not be relevant to PV 5.4 with 
integrated PointGaussian, but other plugins may add similar entries, whether 
used or not in a particular view.

This causes issues using Catalyst, as those plugins are not enabled in Catalyst 
(even using a full ParaView install with OSMesa as Catalyst, not editions, 
often too incomplete).

One solution is to remove the "offending" lines (i.e. run once, check lines 
reported in error logs, removec those, run again, ...) which while not 
complicated, tends to scare users and requires multiple additional iterations 
to setup a visualization.

A better solution would be to allow loading of plugins from the Python script 
(especially as I expect it would allow using plugins such as SurfaceLIC from 
within Catalyst), but I can't find any documentation for this. I seem to 
remember some people from Kitware mentioning this was possible in a live 
discussion I had, but have no additional details.

Is there a way to tell ParaView/Catalyst to load a particular plugin from 
within a Python script ? IF yes, what's the syntax ?

Best regards,

   Yvan
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview


Re: [Paraview] Screenshot resolution and 2D actors size

2017-08-09 Thread Wilhelm Lionel
Yes, it gives exactly the same output. I would be happy to send you my python 
script but I'm unfortunatly not allowed to do this for confidentiality reasons.

I will see if I can reproduce the same behaviour with another dataset/script 
that I could share.

Thanks a lot !

Lionel

De : Cory Quammen 
Envoyé : mardi 8 août 2017 20:44
À : Wilhelm Lionel
Cc : Paraview@paraview.org
Objet : Re: [Paraview] Screenshot resolution and 2D actors size

> Regarding the pvbatch issue, do you have any hint?

That is odd. I'm not sure what is going on exactly. Have you tried
running your script with pvpython?

Thanks,
Cory

> Kindly,
>
> Lionel
> 
> De : Cory Quammen [cory.quam...@kitware.com]
> Envoyé : mardi 8 août 2017 16:44
> À : Wilhelm Lionel
> Cc : paraview@paraview.org
> Objet : Re: [Paraview] Screenshot resolution and 2D actors size
>
> Hi Lionel,
>
> This is a bug [1] that will be fixed in ParaView 5.4.1, coming out in
> the next week or so. In fact, it is fixed in the latest 5.4.1 release
> candidate, which you can get from www.paraview.org/download.
>
> HTH,
> Cory
>
> [1] https://gitlab.kitware.com/paraview/paraview/issues/17603
>
> On Tue, Aug 8, 2017 at 10:29 AM, Wilhelm Lionel  
> wrote:
>> Dear Paraview community,
>>
>>
>> I created a full layout with 5 different views and would like to save a
>> screenshot. The paraview GUI looks exactly like the image I want to save so
>> I just use File -> Save Screenshot and keep the default resolution. The
>> settings and the generated image are attached as "settings_test1" and
>> "test1" (everything works fine).
>>
>>
>> If I change the resolution of one pixel in one of the dimensions (width for
>> example), the resulting image shows huge scalar bars. Here are also attached
>> the screenshot settings and the resulting image ( as "settings_test2" and
>> "test2" ). I have to mention that the small numbers on the views are in fact
>> 3D Text objects.
>>
>>
>> The entire visualization is produced by a Python script that I launch in the
>> following way : Tools -> Python Shell -> Run Script. In order to avoid
>> resolution problems, I also tried to run the script with pvbatch and at the
>> end save the screenshot with the following settings :
>>
>>
>> SaveScreenshot(OutputImageName,layout, SaveAllViews=1,
>> ImageResolution=UsrImageRes,
>> FontScaling="Scale fonts proportionally",
>> SeparatorWidth=1,
>> SeparatorColor=(1,1,1),
>> ImageQuality=100
>> )
>>
>>
>> These settings are the same as the ones presented in the "settings_test*"
>> images. The result attached as "test3.png".
>>
>>
>> Is this a bug or this behaviour should be expected ? Does anybody has an
>> idea ? Are the problems with pvbatch and the GUI related or not ?
>>
>>
>> I'm using Paraview 5.4.0 with MPI enabled when I use the GUI.
>>
>>
>> Kindly,
>>
>>
>> Lionel Wilhelm
>>
>>
>> ___
>> Powered by www.kitware.com
>>
>> Visit other Kitware open-source projects at
>> http://www.kitware.com/opensource/opensource.html
>>
>> Please keep messages on-topic and check the ParaView Wiki at:
>> http://paraview.org/Wiki/ParaView
>>
>> Search the list archives at: http://markmail.org/search/?q=ParaView
>>
>> Follow this link to subscribe/unsubscribe:
>> http://public.kitware.com/mailman/listinfo/paraview
>>
>
>
>
> --
> Cory Quammen
> Staff R Engineer
> Kitware, Inc.



--
Cory Quammen
Staff R Engineer
Kitware, Inc.
___
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the ParaView Wiki at: 
http://paraview.org/Wiki/ParaView

Search the list archives at: http://markmail.org/search/?q=ParaView

Follow this link to subscribe/unsubscribe:
http://public.kitware.com/mailman/listinfo/paraview