From asduifhssauidf at gmail.com Fri Jun 1 14:12:20 2018 From: asduifhssauidf at gmail.com (iusadhfoias sidufasipudf) Date: Fri, 1 Jun 2018 20:12:20 +0200 Subject: [Paraview-developers] Reading PVD file from code In-Reply-To: <103c9149bc3b6c25071724645ce2345c@imap.dim.uchile.cl> References: <103c9149bc3b6c25071724645ce2345c@imap.dim.uchile.cl> Message-ID: Hello rclaveria, iterating through the file collection has to be done on the client side. It seems like you are only programming server side code. Paraview is very limited by design if you want to change the client from the server. Everything action has to be initiated from the client. Have a look at the PVDReader section of ParaView/ParaViewCore/ServerManager/SMApplication/Resources/readers.xml and write a client side proxy that invokes the required operations. The following can't be discussed as is. Obviously, those lines won't compile without more context. Either show the complete file, or at least the compiler output. "The following piece of code doesn't even compile: vtkDataObject* outputreader = reader->SetUpOutput(); output->DeepCopy(outputreader);" Regards, Jussuf On Thu, May 31, 2018 at 12:13 AM, rclaveria wrote: > Hello, > > I'm writing a Paraview plugin in C++ (a source, to be precise) where I > generate a mesh from external code and save it in PVD format. Then I have > to read the newly created file and load it into the output, in order to > display the mesh on the main Paraview screen. > > I've written other source algorithms which rely on reading files but I've > always read .vtk format so far. That was not a problem since I can read > them with vtkGenericDataObjectReader within the RequestData function: > > vtkSmartPointer reader = > vtkSmartPointer::New(); > std::string inputFilename = dir.toStdString() + "file.vtk"; > reader->SetFileName(inputFilename.c_str()); > reader->Update(); > vtkUnstructuredGrid* outputreader = reader->GetUnstructuredGridOut > put(); > output->DeepCopy(outputreader); > > With pvd files, however, is not equally simple to load a file into the > output. The following piece of code works well for the reading part: > > vtkSmartPointer reader = > vtkSmartPointer::New(); > std::string inputFilename = dir.toStdString() + "file.pvd"; > reader->SetFileName(inputFilename.c_str()); > reader->Update(); > > But I don't know how to show the first file of the collection on the > screen (pvd is a list of objects rather than a single file) and activate > the "animation" on the VCR menu (one can put plays and the whole sequence > displays). In other words, my code intends to replicate what happens when > the user opens a .pvd file from the "File -> Open" menu, but I don't manage > to do it. The following piece of code doesn't even compile: > > vtkDataObject* outputreader = reader->SetUpOutput(); > output->DeepCopy(outputreader); > > I'd be grateful to get some help with this issue. > > Regards, > R > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at http://www.kitware.com/opensou > rce/opensource.html > > Search the list archives at: http://markmail.org/search/?q= > Paraview-developers > > Follow this link to subscribe/unsubscribe: > https://public.kitware.com/mailman/listinfo/paraview-developers > -------------- next part -------------- An HTML attachment was scrubbed... URL: From andreamnt94 at gmail.com Sat Jun 2 15:00:24 2018 From: andreamnt94 at gmail.com (Andrea Mantovani) Date: Sat, 2 Jun 2018 21:00:24 +0200 Subject: [Paraview-developers] How to public a plugin and include it in the official Paraview distribution Message-ID: Hi all, I'm developing a Paraview plugin for an university project (in collaboration with the Prof. Paolo Cignoni) which includes key features of the VCG library (actually Uniform Random Sampling and the Hausdorff Distance computation). I'd would asking you about the steps to public my plugin and some develop tips to include it in the official distribution. Actually the plugin has few functionalities and developed with an elementary knowledge of the VTK framework, so just some ideas to improve the code and make it suitable for your standard will be really appreciated. Thanks in advance for any kind of help. Best regards, Andrea Mantovani -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.thompson at kitware.com Sat Jun 2 15:52:34 2018 From: david.thompson at kitware.com (David Thompson) Date: Sat, 2 Jun 2018 15:52:34 -0400 Subject: [Paraview-developers] How to public a plugin and include it in the official Paraview distribution In-Reply-To: References: Message-ID: Hi Andrea, > ... > I'm developing a Paraview plugin for an university project (in collaboration with the Prof. Paolo Cignoni) which includes key features of the VCG library (actually Uniform Random Sampling and the Hausdorff Distance computation). > > I'd would asking you about the steps to public my plugin and some develop tips to include it in the official distribution. ... I would be happy to take a look at your contribution, but if it depends on VCG then I do not think it can be included in ParaView directly because of licensing issues. My understanding is that VCG is licensed under the GPL while ParaView is licensed under a less restrictive BSD-style license. We specifically require conributions to the VTK and ParaView repositories to be under the BSD license and not depend on software under the GPL so that PV+VTK can be used in closed-source commercial applications. However, we do provide pathways for software under other licenses to be integrated into VTK and ParaView, including remote source modules[1] and plugins[2]. This way, people willing to accept the GPL can use your contribution. Besides licensing issues, I am happy to take a look and provide some comments on how your code style matches VTK if you can point me to a public repo with the source code. David [1]: https://www.vtk.org/Wiki/VTK/Remote_Modules [2]: https://www.paraview.org/Wiki/ParaView/Plugin_HowTo -------------- next part -------------- An HTML attachment was scrubbed... URL: From mathieu.westphal at kitware.com Mon Jun 4 09:38:24 2018 From: mathieu.westphal at kitware.com (Mathieu Westphal) Date: Mon, 4 Jun 2018 15:38:24 +0200 Subject: [Paraview-developers] [vtk-developers] -* Plugin compilation for paraview *- (help) In-Reply-To: <1528119057754-0.post@n5.nabble.com> References: <1527519968804-0.post@n5.nabble.com> <1527765444014-0.post@n5.nabble.com> <1528119057754-0.post@n5.nabble.com> Message-ID: Hi wil1, Hi ParaView dev list As stated before, you should post on the right mailing list. First, paraview officially support visual studio 2013, not 2015, but this should work the same : Here is a quick tutorial on how to build a Plugin with Ninja on windows. please do the following : - Install Ninja https://ninja-build.org/ - Cleanup your plugin build directory - Open a VS2015 x64 Native Tools Command Prompt - in the terminal : cd /path/to/your/build/dir cmake-gui - in cmake-gui, configure you project but instead of "Visual Studio 14 2015", select "Ninja" - configure, find the ParaViewDir, generate - close cmake-gui - in the terminal : ninja you now have a libYouPlugin.dll file in the build directory. Best regards. Mathieu Westphal On Mon, Jun 4, 2018 at 3:30 PM, wil1 wrote: > Can you explain me the full procedure of building a plugin with ninja ? > > I downloaded the git repository : git clone > git://github.com/ninja-build/ninja.git > Cmake doesn't recognise ninja > > > > > -- > Sent from: http://vtk.1045678.n5.nabble.com/VTK-Dev-f1251487.html > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at http://www.kitware.com/ > opensource/opensource.html > > Search the list archives at: http://markmail.org/search/?q=vtk-developers > > Follow this link to subscribe/unsubscribe: > https://public.kitware.com/mailman/listinfo/vtk-developers > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From cory.quammen at kitware.com Tue Jun 5 10:14:46 2018 From: cory.quammen at kitware.com (Cory Quammen) Date: Tue, 5 Jun 2018 10:14:46 -0400 Subject: [Paraview-developers] [ANNOUNCE] ParaView 5.5.1 now available for download Message-ID: Dear ParaView community, On behalf of the ParaView team, I am pleased to announce that ParaView 5.5.1 is available for download at https://www.paraview.org/download/ Release notes are available at https://blog.kitware.com/paraview-5-5-1-release-notes/ In addition, ParaView's git repository and superbuild repository have been tagged with "v5.5.1". Thanks! The ParaView Team -- Cory Quammen Staff R&D Engineer Kitware, Inc. -------------- next part -------------- An HTML attachment was scrubbed... URL: From utkarsh.ayachit at kitware.com Tue Jun 5 16:15:54 2018 From: utkarsh.ayachit at kitware.com (Utkarsh Ayachit) Date: Tue, 5 Jun 2018 16:15:54 -0400 Subject: [Paraview-developers] [Paraview] [ANNOUNCE] ParaView 5.5.1 now available for download In-Reply-To: <0b1297ac-4f82-419e-7483-e508be29b975@lbl.gov> References: <0b1297ac-4f82-419e-7483-e508be29b975@lbl.gov> Message-ID: Burlen, Are you doing a static build of ParaView? What Cmake flags did you use? Utkarsh From rclaveria at dim.uchile.cl Tue Jun 5 18:52:48 2018 From: rclaveria at dim.uchile.cl (rclaveria) Date: Tue, 05 Jun 2018 18:52:48 -0400 Subject: [Paraview-developers] Folder Selector in ParaView Message-ID: <21bde1e7980879f01382839480181291@imap.dim.uchile.cl> Hello, I'm writing a filter for ParaView. I need to enable the user to select a folder through the filter's menu, ideally using the module pqFileDialog. For files, the following lines on the xml file of the filter suffice, but with this piece of code only files are admitted (not directories). Is there a way to set a menu that admits only directories? Thanks From mathieu.westphal at kitware.com Wed Jun 6 03:49:04 2018 From: mathieu.westphal at kitware.com (Mathieu Westphal) Date: Wed, 6 Jun 2018 09:49:04 +0200 Subject: [Paraview-developers] [vtk-developers] -* Plugin compilation for paraview *- (help) In-Reply-To: References: <1527519968804-0.post@n5.nabble.com> <1527765444014-0.post@n5.nabble.com> <1528119057754-0.post@n5.nabble.com> Message-ID: Hello Please keep the list in the discussion so everyone can contribute. Did you run cmake-gui from the *VS2015 x64 Native Tools Command Prompt *? You need to type "cmake-gui" in it instead of using the start menu. Mathieu Westphal On Tue, Jun 5, 2018 at 6:45 PM, william serviant wrote: > Hi, > > Thank you for the fast answer, > > > > I have erros when configuring with cmake : > > > > CMake Error: CMake was unable to find a build program corresponding to > "Ninja". CMAKE_MAKE_PROGRAM is not set. You probably need to select a > different build tool. > > CMake Error: CMAKE_C_COMPILER not set, after EnableLanguage > > CMake Error: CMAKE_CXX_COMPILER not set, after EnableLanguage > > > > Do you know how to correct this ? > > > > > ------------------------------ > *De :* Mathieu Westphal > *Envoy? :* Monday, June 4, 2018 3:38:24 PM > *? :* wil1; ParaView Developers > *Objet :* Re: [vtk-developers] -* Plugin compilation for paraview *- > (help) > > Hi wil1, Hi ParaView dev list > > As stated before, you should post on the right mailing list. > First, paraview officially support visual studio 2013, not 2015, but this > should work the same : > > Here is a quick tutorial on how to build a Plugin with Ninja on windows. > please do the following : > > - Install Ninja https://ninja-build.org/ > - Cleanup your plugin build directory > - Open a VS2015 x64 Native Tools Command Prompt > - in the terminal : > cd /path/to/your/build/dir > cmake-gui > - in cmake-gui, configure you project but instead of "Visual Studio 14 > 2015", select "Ninja" > - configure, find the ParaViewDir, generate > - close cmake-gui > - in the terminal : > ninja > > you now have a libYouPlugin.dll file in the build directory. > > Best regards. > > > > > Mathieu Westphal > > On Mon, Jun 4, 2018 at 3:30 PM, wil1 wrote: > >> Can you explain me the full procedure of building a plugin with ninja ? >> >> I downloaded the git repository : git clone >> git://github.com/ninja-build/ninja.git >> Cmake doesn't recognise ninja >> >> >> >> >> -- >> Sent from: http://vtk.1045678.n5.nabble.com/VTK-Dev-f1251487.html >> _______________________________________________ >> Powered by www.kitware.com >> >> Visit other Kitware open-source projects at >> http://www.kitware.com/opensource/opensource.html >> >> Search the list archives at: http://markmail.org/search/?q=vtk-developers >> >> Follow this link to subscribe/unsubscribe: >> https://public.kitware.com/mailman/listinfo/vtk-developers >> >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: From mathieu.westphal at kitware.com Wed Jun 6 05:08:57 2018 From: mathieu.westphal at kitware.com (Mathieu Westphal) Date: Wed, 6 Jun 2018 11:08:57 +0200 Subject: [Paraview-developers] [vtk-developers] -* Plugin compilation for paraview *- (help) In-Reply-To: References: <1527519968804-0.post@n5.nabble.com> <1527765444014-0.post@n5.nabble.com> <1528119057754-0.post@n5.nabble.com> Message-ID: Hello Please keep the list in the discussion so other can help you, not only me. when you installed cmake, you could have installed it to your path, wich would allow you to run cmake-gui from anywhere. you can also run cmake-gui from the build directory if you enter the full path C:/ProgramFiles/Cmake/bin/cmake-gui (or similar) Best, Mathieu Westphal On Wed, Jun 6, 2018 at 11:00 AM, william serviant wrote: > Hello, > > > > Don?t worry for the list, I will make a solution report if we solve the > problem. > > > > Yes I?m running cmake-gui from VS2015 x64 Native Tools Command Prompt and > I still have the errors > > > > But you said : > > *? - in the terminal :* > > * cd /path/to/your/build/dir* > > * cmake-gui* > > * ?* > > How can I run cmake-gui if i?m in the build directory of the plugin ? > > Sorry for the dumb questions > > > > > > > ------------------------------ > *De :* Mathieu Westphal > *Envoy? :* Wednesday, June 6, 2018 9:49:04 AM > *? :* william serviant; ParaView Developers > > *Objet :* Re: [vtk-developers] -* Plugin compilation for paraview *- > (help) > > Hello > > Please keep the list in the discussion so everyone can contribute. > > Did you run cmake-gui from the *VS2015 x64 Native Tools Command Prompt *? > > You need to type "cmake-gui" in it instead of using the start menu. > > > > Mathieu Westphal > > On Tue, Jun 5, 2018 at 6:45 PM, william serviant > wrote: > >> Hi, >> >> Thank you for the fast answer, >> >> >> >> I have erros when configuring with cmake : >> >> >> >> CMake Error: CMake was unable to find a build program corresponding to >> "Ninja". CMAKE_MAKE_PROGRAM is not set. You probably need to select a >> different build tool. >> >> CMake Error: CMAKE_C_COMPILER not set, after EnableLanguage >> >> CMake Error: CMAKE_CXX_COMPILER not set, after EnableLanguage >> >> >> >> Do you know how to correct this ? >> >> >> >> >> ------------------------------ >> *De :* Mathieu Westphal >> *Envoy? :* Monday, June 4, 2018 3:38:24 PM >> *? :* wil1; ParaView Developers >> *Objet :* Re: [vtk-developers] -* Plugin compilation for paraview *- >> (help) >> >> Hi wil1, Hi ParaView dev list >> >> As stated before, you should post on the right mailing list. >> First, paraview officially support visual studio 2013, not 2015, but this >> should work the same : >> >> Here is a quick tutorial on how to build a Plugin with Ninja on windows. >> please do the following : >> >> - Install Ninja https://ninja-build.org/ >> - Cleanup your plugin build directory >> - Open a VS2015 x64 Native Tools Command Prompt >> - in the terminal : >> cd /path/to/your/build/dir >> cmake-gui >> - in cmake-gui, configure you project but instead of "Visual Studio 14 >> 2015", select "Ninja" >> - configure, find the ParaViewDir, generate >> - close cmake-gui >> - in the terminal : >> ninja >> >> you now have a libYouPlugin.dll file in the build directory. >> >> Best regards. >> >> >> >> >> Mathieu Westphal >> >> On Mon, Jun 4, 2018 at 3:30 PM, wil1 wrote: >> >>> Can you explain me the full procedure of building a plugin with ninja ? >>> >>> I downloaded the git repository : git clone >>> git://github.com/ninja-build/ninja.git >>> Cmake doesn't recognise ninja >>> >>> >>> >>> >>> -- >>> Sent from: http://vtk.1045678.n5.nabble.com/VTK-Dev-f1251487.html >>> _______________________________________________ >>> Powered by www.kitware.com >>> >>> Visit other Kitware open-source projects at >>> http://www.kitware.com/opensource/opensource.html >>> >>> Search the list archives at: http://markmail.org/search/?q= >>> vtk-developers >>> >>> Follow this link to subscribe/unsubscribe: >>> https://public.kitware.com/mailman/listinfo/vtk-developers >>> >>> >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: From mathieu.westphal at kitware.com Wed Jun 6 07:37:10 2018 From: mathieu.westphal at kitware.com (Mathieu Westphal) Date: Wed, 6 Jun 2018 13:37:10 +0200 Subject: [Paraview-developers] [vtk-developers] -* Plugin compilation for paraview *- (help) In-Reply-To: <1528284595856-0.post@n5.nabble.com> References: <1527519968804-0.post@n5.nabble.com> <1527765444014-0.post@n5.nabble.com> <1528119057754-0.post@n5.nabble.com> <1528284595856-0.post@n5.nabble.com> Message-ID: Hello Please keep the discussion in the right mailing list. VTK-dev are not concerned by paraview plugins. "vtkexodusII-pv5.5.lib required for the plugin and missing " does not looks like a standard error. Can you please paste the full error ? Thanks, Mathieu Westphal On Wed, Jun 6, 2018 at 1:29 PM, wil1 wrote: > Hi, shout out to Mathieu Westphal for the help > the solution to generate the .Dll of a plugin was : > > - Install Ninja https://ninja-build.org/ > - add ninja.exe path to environment Path > - Cleanup your plugin build directory > - Open a VS2015 x64 Native Tools Command Prompt > - in the terminal : > cd /path/to/your/build/dir > cmake-gui > - in cmake-gui, configure you project but instead of "Visual Studio 14 > 2015", select "Ninja" > - configure, find the ParaViewDir, generate > - close cmake-gui > - in the terminal : > ninja > > > But know I have an other error, when putting ninja in the terminal i got : > "vtkexodusII-pv5.5.lib required for the plugin and missing " > > Why do the plugin needs vtkexodus ?? > > > > > > > > -- > Sent from: http://vtk.1045678.n5.nabble.com/VTK-Dev-f1251487.html > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at http://www.kitware.com/ > opensource/opensource.html > > Search the list archives at: http://markmail.org/search/?q=vtk-developers > > Follow this link to subscribe/unsubscribe: > https://public.kitware.com/mailman/listinfo/vtk-developers > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From mathieu.westphal at kitware.com Wed Jun 6 09:13:56 2018 From: mathieu.westphal at kitware.com (Mathieu Westphal) Date: Wed, 6 Jun 2018 15:13:56 +0200 Subject: [Paraview-developers] [vtk-developers] -* Plugin compilation for paraview *- (help) In-Reply-To: <1528290565426-0.post@n5.nabble.com> References: <1527519968804-0.post@n5.nabble.com> <1527765444014-0.post@n5.nabble.com> <1528119057754-0.post@n5.nabble.com> <1528284595856-0.post@n5.nabble.com> <1528290565426-0.post@n5.nabble.com> Message-ID: Hello, I send all mails concerning our discussion to ParaView Developers < paraview-developers at paraview.org>, you can register here : https://www.paraview.org/mailing-lists/ Or even better use our new ParaView discourse : https://discourse.paraview.org Concerning your issue, it is hard to help you without seeing your CMakeLists.txt You may want to try to build an example plugin from paraview/Examples/Plugins Best regards, Mathieu Westphal On Wed, Jun 6, 2018 at 3:09 PM, wil1 wrote: > wich mailing list mr. westphal ? I only see vtk devs and vtk users. > > Full Error : > > " > ninja: error: 'pathToParaviewBuild/lib/vtkexodusII-pv5.5.lib', needed by > 'thePlugin.dll', missing and no known rule to make it > " > > > only vtkioexodus-pv5.5.lib is generated in paraview lib > > > > -- > Sent from: http://vtk.1045678.n5.nabble.com/VTK-Dev-f1251487.html > _______________________________________________ > Powered by www.kitware.com > > Visit other Kitware open-source projects at http://www.kitware.com/ > opensource/opensource.html > > Search the list archives at: http://markmail.org/search/?q=vtk-developers > > Follow this link to subscribe/unsubscribe: > https://public.kitware.com/mailman/listinfo/vtk-developers > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From cory.quammen at kitware.com Wed Jun 6 10:15:27 2018 From: cory.quammen at kitware.com (Cory Quammen) Date: Wed, 6 Jun 2018 10:15:27 -0400 Subject: [Paraview-developers] Reminder: ParaView community support is transitioning to discourse.paraview.org Message-ID: Hi ParaView community, This is just a reminder that we are transitioning our community support forums to https://discourse.paraview.org/ Discourse is now the preferred place to post new topics and help requests. In just a week of operation there are already a good number of discussions taking place there. By the way, if you prefer interacting via mailing list, Discourse provides a mailing list mode that you can enable by following the guide Utkarsh posted: https://discourse.paraview.org/t/using-discourse-as-a-mailing-list/64 Thanks! Cory -- Cory Quammen Staff R&D Engineer Kitware, Inc. -------------- next part -------------- An HTML attachment was scrubbed... URL: From thomas_sgouros at brown.edu Wed Jun 6 10:37:12 2018 From: thomas_sgouros at brown.edu (Sgouros, Thomas) Date: Wed, 6 Jun 2018 10:37:12 -0400 Subject: [Paraview-developers] Reminder: ParaView community support is transitioning to discourse.paraview.org In-Reply-To: References: Message-ID: Thank you. Will the VTK forums be moving there, too? -Tom On Wed, Jun 6, 2018 at 10:15 AM, Cory Quammen wrote: > Hi ParaView community, > > This is just a reminder that we are transitioning our community support > forums to > > https://discourse.paraview.org/ > > Discourse is now the preferred place to post new topics and help > requests. In just a week of operation there are already a good number of > discussions taking place there. > > By the way, if you prefer interacting via mailing list, Discourse provides > a mailing list mode that you can enable by following the guide Utkarsh > posted: > > https://discourse.paraview.org/t/using-discourse-as-a-mailing-list/64 > > Thanks! > > Cory > > -- > Cory Quammen > Staff R&D Engineer > Kitware, Inc. > > _______________________________________________ > Powered by www.kitware.com > > ParaView development discussion is moving! Please visit > https://discourse.paraview.org/ for future posts. > > Visit other Kitware open-source projects at http://www.kitware.com/ > opensource/opensource.html > > Search the list archives at: http://markmail.org/search/?q= > Paraview-developers > > Follow this link to subscribe/unsubscribe: > https://public.kitware.com/mailman/listinfo/paraview-developers > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From cory.quammen at kitware.com Wed Jun 6 10:40:36 2018 From: cory.quammen at kitware.com (Cory Quammen) Date: Wed, 6 Jun 2018 10:40:36 -0400 Subject: [Paraview-developers] Reminder: ParaView community support is transitioning to discourse.paraview.org In-Reply-To: References: Message-ID: On Wed, Jun 6, 2018 at 10:37 AM Sgouros, Thomas wrote: > Thank you. Will the VTK forums be moving there, too? > That is eventually the plan. Cory > -Tom > > On Wed, Jun 6, 2018 at 10:15 AM, Cory Quammen > wrote: > >> Hi ParaView community, >> >> This is just a reminder that we are transitioning our community support >> forums to >> >> https://discourse.paraview.org/ >> >> Discourse is now the preferred place to post new topics and help >> requests. In just a week of operation there are already a good number of >> discussions taking place there. >> >> By the way, if you prefer interacting via mailing list, Discourse >> provides a mailing list mode that you can enable by following the guide >> Utkarsh posted: >> >> https://discourse.paraview.org/t/using-discourse-as-a-mailing-list/64 >> >> Thanks! >> >> Cory >> >> -- >> Cory Quammen >> Staff R&D Engineer >> Kitware, Inc. >> >> _______________________________________________ >> Powered by www.kitware.com >> >> ParaView development discussion is moving! Please visit >> https://discourse.paraview.org/ for future posts. >> >> Visit other Kitware open-source projects at >> http://www.kitware.com/opensource/opensource.html >> >> Search the list archives at: >> http://markmail.org/search/?q=Paraview-developers >> >> Follow this link to subscribe/unsubscribe: >> https://public.kitware.com/mailman/listinfo/paraview-developers >> >> > -- Cory Quammen Staff R&D Engineer Kitware, Inc. -------------- next part -------------- An HTML attachment was scrubbed... URL: From aron.helser at kitware.com Wed Jun 6 11:43:13 2018 From: aron.helser at kitware.com (Aron Helser) Date: Wed, 6 Jun 2018 11:43:13 -0400 Subject: [Paraview-developers] Folder Selector in ParaView In-Reply-To: <21bde1e7980879f01382839480181291@imap.dim.uchile.cl> References: <21bde1e7980879f01382839480181291@imap.dim.uchile.cl> Message-ID: I don't see anything next to FileListDomain in the code that looks promising. You could always use a straight string, but that doesn't get you the nice selector dialog. On Tue, Jun 5, 2018 at 6:52 PM, rclaveria wrote: > Hello, > > I'm writing a filter for ParaView. I need to enable the user to select a > folder through the filter's menu, ideally using the module pqFileDialog. > For files, the following lines on the xml file of the filter suffice, but > with this piece of code only files are admitted (not directories). Is there > a way to set a menu that admits only directories? > > command="SetOutputDir" > name="OutputDir" > number_of_elements="1" > panel_visibility="default"> > > > Thanks > _______________________________________________ > Powered by www.kitware.com > > ParaView development discussion is moving! Please visit > https://discourse.paraview.org/ for future posts. > > Visit other Kitware open-source projects at http://www.kitware.com/opensou > rce/opensource.html > > Search the list archives at: http://markmail.org/search/?q= > Paraview-developers > > Follow this link to subscribe/unsubscribe: > https://public.kitware.com/mailman/listinfo/paraview-developers > -------------- next part -------------- An HTML attachment was scrubbed... URL: From utkarsh.ayachit at kitware.com Thu Jun 7 09:29:48 2018 From: utkarsh.ayachit at kitware.com (Utkarsh Ayachit) Date: Thu, 7 Jun 2018 09:29:48 -0400 Subject: [Paraview-developers] [Paraview] [ANNOUNCE] ParaView 5.5.1 now available for download In-Reply-To: <868d9ce7-9490-c54a-283c-5d62eb855b1f@lbl.gov> References: <0b1297ac-4f82-419e-7483-e508be29b975@lbl.gov> <868d9ce7-9490-c54a-283c-5d62eb855b1f@lbl.gov> Message-ID: Thanks, Burlen. I'll plan to look into it before we tag 5.5.2. Utkarsh On Wed, Jun 6, 2018 at 5:58 PM Burlen Loring wrote: > Hi Utkarsh, > > Sorry I missed your reply, I thought my post got bounced and didn't look. > > BUILD_SHARED_LIBS=OFF and PARAVIEW_USE_VISITBRIDGE=ON will reproduce the > issue. > > I was able to quickly move past it by finding VISIT_STATIC in the cmake > code and making the following change > > ParaView/Utilities/VisItBridge$git diff > diff --git a/Library/VisItLib/CMake/VisItCommon.cmake > b/Library/VisItLib/CMake/VisItCommon.cmake > index 0bfad93..b4f136c 100644 > --- a/Library/VisItLib/CMake/VisItCommon.cmake > +++ b/Library/VisItLib/CMake/VisItCommon.cmake > @@ -26,14 +26,14 @@ if(VISIT_DISABLE_COMPILER_WARNINGS) > endif(VISIT_DISABLE_COMPILER_WARNINGS) > > #set up some vars we need to compile > -set(VISIT_STATIC) > -if (BUILD_SHARED_LIBS) > +#set(VISIT_STATIC) > +#if (BUILD_SHARED_LIBS) > set(VISIT_STATIC 0) > add_definitions(-DVISIT_BUILD_SHARED_LIBS) > -else(VISIT_STATIC) > - set(VISIT_STATIC 1) > - add_definitions(-DVISIT_STATIC -DGLEW_STATIC) > -endif() > +#else(VISIT_STATIC) > +# set(VISIT_STATIC 1) > +# add_definitions(-DVISIT_STATIC -DGLEW_STATIC) > +#endif() > > set(VISIT_SOURCE_DIR ${VisItBridgePlugin_SOURCE_DIR}) > set(VISIT_BINARY_DIR ${VisItBridgePlugin_BINARY_DIR}) > > > On 06/05/2018 01:15 PM, Utkarsh Ayachit wrote: > > Burlen, > > > > Are you doing a static build of ParaView? What Cmake flags did you use? > > > > Utkarsh > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From Mark.Olesen at esi-group.com Thu Jun 7 11:44:39 2018 From: Mark.Olesen at esi-group.com (Mark Olesen) Date: Thu, 7 Jun 2018 17:44:39 +0200 Subject: [Paraview-developers] [Paraview] [ANNOUNCE] ParaView 5.5.1 now available for download In-Reply-To: References: <0b1297ac-4f82-419e-7483-e508be29b975@lbl.gov> <868d9ce7-9490-c54a-283c-5d62eb855b1f@lbl.gov> Message-ID: <71789402-7303-cd64-b0a9-b46f2a4e58c1@esi-group.com> If we are looking for 5.5.2 bits: In 5.5.1 it seems that I still need to patch VTK/ThirdParty/vtkm/vtk-m/CMake/VTKmDetermineVersion.cmake (commit cf91ca520e38faa1afae5d0bcc6788b2b4660c3e) I that Andy's catalyst changes might have made it in, but wasn't really surprised not to see them since they do change the API. Nonetheless, I'll express them as a wish: CoProcessing/Catalyst/vtkCPProcessor.cxx CoProcessing/Catalyst/vtkCPProcessor.h CoProcessing/Catalyst/vtkCPXMLPWriterPipeline.cxx Wrapping/Python/paraview/coprocessing.py Cheers, /mark From andy.bauer at kitware.com Fri Jun 8 11:49:06 2018 From: andy.bauer at kitware.com (Andy Bauer) Date: Fri, 8 Jun 2018 11:49:06 -0400 Subject: [Paraview-developers] [Paraview] [ANNOUNCE] ParaView 5.5.1 now available for download In-Reply-To: <71789402-7303-cd64-b0a9-b46f2a4e58c1@esi-group.com> References: <0b1297ac-4f82-419e-7483-e508be29b975@lbl.gov> <868d9ce7-9490-c54a-283c-5d62eb855b1f@lbl.gov> <71789402-7303-cd64-b0a9-b46f2a4e58c1@esi-group.com> Message-ID: Hi Mark, The VTKm patch issue should be resolved in 5.5.2. I'd love to have the Catalyst API changes in 5.5.2 but that's a bit much for a patch change. 5.6 will have it though and that's due out in September so people won't have to wait too long for that. Best, Andy On Thu, Jun 7, 2018 at 11:45 AM Mark Olesen wrote: > If we are looking for 5.5.2 bits: > > In 5.5.1 it seems that I still need to patch > VTK/ThirdParty/vtkm/vtk-m/CMake/VTKmDetermineVersion.cmake > > (commit cf91ca520e38faa1afae5d0bcc6788b2b4660c3e) > > > I that Andy's catalyst changes might have made it in, but wasn't really > surprised not to see them since they do change the API. Nonetheless, > I'll express them as a wish: > > CoProcessing/Catalyst/vtkCPProcessor.cxx > CoProcessing/Catalyst/vtkCPProcessor.h > CoProcessing/Catalyst/vtkCPXMLPWriterPipeline.cxx > Wrapping/Python/paraview/coprocessing.py > > > Cheers, > /mark > _______________________________________________ > Powered by www.kitware.com > > ParaView discussion is moving! Please visit > https://discourse.paraview.org/ for future posts. > > 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: > https://public.kitware.com/mailman/listinfo/paraview > -------------- next part -------------- An HTML attachment was scrubbed... URL: From wascott at sandia.gov Fri Jun 8 20:21:05 2018 From: wascott at sandia.gov (Scott, W Alan) Date: Sat, 9 Jun 2018 00:21:05 +0000 Subject: [Paraview-developers] 3d file opening as 2d In-Reply-To: <5ed7c0f454124a02a2bbd41c44b2c3ba@ES01AMSNLNT.srn.sandia.gov> References: <5ed7c0f454124a02a2bbd41c44b2c3ba@ES01AMSNLNT.srn.sandia.gov> Message-ID: Ping? From: W Scott Date: Thursday, May 31, 2018 at 6:49 PM To: "paraview-developers at paraview.org" Subject: 3d file opening as 2d Question from a user: The attached exodus results file will open up in Paraview as a 2D problem because at t=0, the z dimensions are consistent. Could Paraview switch between 2D if the element type contains a QUAD descriptor , and 3D if the element type contains a SHELL descriptor? Thanks, Alan -------------------------------------------------------- W. Alan Scott ParaView Support Manager SAIC Sandia National Laboratories, MS 0807 Org 9326 - Building 880 A1-K (505) 284-0932 FAX (505) 284-5619 ?When the facts change, I change my mind. What do you do, sir?? John Maynard Keynes --------------------------------------------------------- -------------- next part -------------- An HTML attachment was scrubbed... URL: From david.thompson at kitware.com Fri Jun 8 20:39:14 2018 From: david.thompson at kitware.com (David Thompson) Date: Fri, 8 Jun 2018 20:39:14 -0400 Subject: [Paraview-developers] 3d file opening as 2d In-Reply-To: References: <5ed7c0f454124a02a2bbd41c44b2c3ba@ES01AMSNLNT.srn.sandia.gov> Message-ID: <9F8A7C7E-17AD-4324-8A9E-1B9FE9413E97@kitware.com> Hi Alan, > ... > Question from a user: > > > The attached exodus results file will open up in Paraview as a 2D problem because at t=0, the z dimensions are consistent. > > Could Paraview switch between 2D if the element type contains a QUAD descriptor , and 3D if the element type contains a SHELL descriptor? > If there's not a way for sources/readers to indicate the "problem dimension," there probably should be. However, it seems to me that it would be better if Exodus files could explicitly designate whether they are 2d or 3d than trying to come up with rules for the reader to infer it, rather than just passing along file metadata. David -------------- next part -------------- An HTML attachment was scrubbed... URL: From wascott at sandia.gov Fri Jun 8 20:42:32 2018 From: wascott at sandia.gov (Scott, W Alan) Date: Sat, 9 Jun 2018 00:42:32 +0000 Subject: [Paraview-developers] [EXTERNAL] Re: 3d file opening as 2d In-Reply-To: <9F8A7C7E-17AD-4324-8A9E-1B9FE9413E97@kitware.com> References: <5ed7c0f454124a02a2bbd41c44b2c3ba@ES01AMSNLNT.srn.sandia.gov> <9F8A7C7E-17AD-4324-8A9E-1B9FE9413E97@kitware.com> Message-ID: <84D8B881-3736-4332-9B5F-617BCC3C2F0A@sandia.gov> Evidentially, as I describe in the question, a QUAD descriptor or SHELL descriptor does this? Including the person who made the request in this e-mail thread. Alan From: David Thompson Date: Friday, June 8, 2018 at 6:39 PM To: W Scott Cc: "paraview-developers at paraview.org" Subject: [EXTERNAL] Re: [Paraview-developers] 3d file opening as 2d Hi Alan, ... Question from a user: The attached exodus results file will open up in Paraview as a 2D problem because at t=0, the z dimensions are consistent. Could Paraview switch between 2D if the element type contains a QUAD descriptor , and 3D if the element type contains a SHELL descriptor? If there's not a way for sources/readers to indicate the "problem dimension," there probably should be. However, it seems to me that it would be better if Exodus files could explicitly designate whether they are 2d or 3d than trying to come up with rules for the reader to infer it, rather than just passing along file metadata. David -------------- next part -------------- An HTML attachment was scrubbed... URL: From kuoweiwang at yahoo.com Wed Jun 13 19:54:37 2018 From: kuoweiwang at yahoo.com (David Wang) Date: Wed, 13 Jun 2018 23:54:37 +0000 (UTC) Subject: [Paraview-developers] A question about showing the unit on the scalar bar In-Reply-To: <1936376772.5121304.1528933574015@mail.yahoo.com> References: <1936376772.5121304.1528933574015.ref@mail.yahoo.com> <1936376772.5121304.1528933574015@mail.yahoo.com> Message-ID: <1118805502.5125312.1528934077058@mail.yahoo.com> Hi I wonder if there is an automatically way to load the legend from the .vtu and display it on the scalar bar. Currently I have the following. I wonder if there is any existing clause used to add some extra info such as Unit="xxx" . The only way I can find is to manually edit the "Edit Color Legend Properties" dialogbox. But needs to do every single time and its not automatic. Thanks -------------- next part -------------- An HTML attachment was scrubbed... URL: From cory.quammen at kitware.com Wed Jun 13 22:20:52 2018 From: cory.quammen at kitware.com (Cory Quammen) Date: Wed, 13 Jun 2018 22:20:52 -0400 Subject: [Paraview-developers] A question about showing the unit on the scalar bar In-Reply-To: <1118805502.5125312.1528934077058@mail.yahoo.com> References: <1936376772.5121304.1528933574015.ref@mail.yahoo.com> <1936376772.5121304.1528933574015@mail.yahoo.com> <1118805502.5125312.1528934077058@mail.yahoo.com> Message-ID: David, I may be mistaken, but I do not believe XML files can contain a color lookup table, so what you are trying to do is not possible. HTH, Cory On Wed, Jun 13, 2018 at 7:54 PM David Wang via Paraview-developers < paraview-developers at public.kitware.com> wrote: > Hi > > I wonder if there is an automatically way to load the legend from the .vtu > and display it on the scalar bar. Currently I have the following. I wonder > if there is any existing clause used to add some extra info such as > Unit="xxx" . > > The only way I can find is to manually edit the "Edit Color Legend > Properties" dialogbox. But needs to do every single time and its not > automatic. > > Thanks > > RangeMax="0"> > _______________________________________________ > Powered by www.kitware.com > > ParaView development discussion is moving! Please visit > https://discourse.paraview.org/ for future posts. > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Search the list archives at: > http://markmail.org/search/?q=Paraview-developers > > Follow this link to subscribe/unsubscribe: > https://public.kitware.com/mailman/listinfo/paraview-developers > -- Cory Quammen Staff R&D Engineer Kitware, Inc. -------------- next part -------------- An HTML attachment was scrubbed... URL: From rclaveria at dim.uchile.cl Fri Jun 15 11:34:20 2018 From: rclaveria at dim.uchile.cl (rclaveria) Date: Fri, 15 Jun 2018 11:34:20 -0400 Subject: [Paraview-developers] Accessing attributes in VTK geometric objects Message-ID: <73b10953573b230d17a70b885828c725@imap.dim.uchile.cl> Hello, I need to access and modify the data attributes of VTK geometric objects (e.g., an unstructured grid) from the code. For example, I'd like to write algorithm to assign a pressure or temperature value to each cell (or point) of my mesh according to a certain physical model. However, I haven't found code examples where data attributes are set, accessed or modified using C++ or python code. So far, I've relied on external code (python's FEniCS library, to be precise) to generate meshes, run simulations and set attributes, saving the output in a format readable by ParaView (.vtk extension with the flag UNSTRUCTURED_GRID). I'd be grateful to receive guidelines on how to set the attributes of a mesh using the VTK library. Thanks From will.schroeder at kitware.com Fri Jun 15 12:47:07 2018 From: will.schroeder at kitware.com (Will Schroeder) Date: Fri, 15 Jun 2018 12:47:07 -0400 Subject: [Paraview-developers] Accessing attributes in VTK geometric objects In-Reply-To: <73b10953573b230d17a70b885828c725@imap.dim.uchile.cl> References: <73b10953573b230d17a70b885828c725@imap.dim.uchile.cl> Message-ID: I recommend that you check out the extensive examples: https://lorensen.github.io/VTKExamples/site/ See for example: https://lorensen.github.io/VTKExamples/site/Cxx/VTKConcepts/Scalars/ Or grep "GetPointData()" or "GetCellData()" in the VTK source code. Basic ideas: - A dataset represents geometry + topology e.g., vtkUnstructuredGrid. - Attribute data (point data and cell data) is associated on a 1-for-1 with dataset points and cells. - Attributes (e.g., scalars) are created in vtkDataArrays using tuples of one or more components - Attributes can be associated with dataset via dataset->GetPointData()->SetScalars(attrArray) or using AddArray() etc Also see VTK/*/*/Testing/Cxx and VTK/*/*/Testing/Python there are literally more than a thousand tests. Finally, I strongly recommend that you read the book (these are works in progress): either on-line LaTeX book created by Andrew Maclean & friends; or the Markdown document created by Bill Lorensen & friends. On Fri, Jun 15, 2018 at 11:34 AM rclaveria wrote: > Hello, > > I need to access and modify the data attributes of VTK geometric objects > (e.g., an unstructured grid) from the code. For example, I'd like to > write algorithm to assign a pressure or temperature value to each cell > (or point) of my mesh according to a certain physical model. However, I > haven't found code examples where data attributes are set, accessed or > modified using C++ or python code. So far, I've relied on external code > (python's FEniCS library, to be precise) to generate meshes, run > simulations and set attributes, saving the output in a format readable > by ParaView (.vtk extension with the flag UNSTRUCTURED_GRID). > > I'd be grateful to receive guidelines on how to set the attributes of a > mesh using the VTK library. > > Thanks > _______________________________________________ > Powered by www.kitware.com > > ParaView development discussion is moving! Please visit > https://discourse.paraview.org/ for future posts. > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Search the list archives at: > http://markmail.org/search/?q=Paraview-developers > > Follow this link to subscribe/unsubscribe: > https://public.kitware.com/mailman/listinfo/paraview-developers > -- William J. Schroeder, PhD Kitware, Inc. - Building the World's Technical Computing Software 28 Corporate Drive Clifton Park, NY 12065 will.schroeder at kitware.com http://www.kitware.com (518) 881-4902 -------------- next part -------------- An HTML attachment was scrubbed... URL: From utkarsh.ayachit at kitware.com Sun Jun 17 10:43:23 2018 From: utkarsh.ayachit at kitware.com (Utkarsh Ayachit) Date: Sun, 17 Jun 2018 10:43:23 -0400 Subject: [Paraview-developers] Announce: vtkPythonClassAlgorithm In-Reply-To: References: Message-ID: Folks, Just to give an update on this feature, these changes have now been merged in ParaView `master`. Checkout the examples script [1] and module docs [2] for more details. Utkarsh [1] https://gitlab.kitware.com/paraview/paraview/blob/master/Examples/Plugins/PythonAlgorithm/PythonAlgorithmExamples.py [2] https://gitlab.kitware.com/paraview/paraview/blob/master/Wrapping/Python/paraview/util/vtkAlgorithm.py On Mon, May 14, 2018 at 9:03 PM Utkarsh Ayachit wrote: > > Bob et. al, > > I've finally got around to revisiting the original demo example I put together to demonstrate using > vtkPythonAlgorithm in ParaView. It's coming together quite well! While it's still early and the code will change, if anyone's interested in following the development, the code is on a branch here: > > To get a > vtk > PythonAlgorithm > subclass > exposed in ParaView, currently > , > one would need 2 things: > 1. `decorate` API on your Python class that you want to expose in ParaView UI > . > > 2. put a small XML plugin together to make ParaView aware of the module > . > > > The example > linked > generates UI as follows: > > I plan to get rid of step 2 (time permitting) so that one can simply "load" a Python module/package as a plugin and get all decorated classes available as filters/sources. > > Any suggestions for improvements are welcome. > > Thanks > Utkarsh > > > > > > On Wed, Aug 16, 2017 at 7:50 AM Bob Pepin wrote: >>> >>> Hi, >> >> >>> >>> > I also think that a vanilla vtkPythonAlgorithm can not meet all the needs of this feature. In my case I need for example to override processRequest on the C++ level in order to reload the module on a new request (and ideally only when the source code has changed, and only optionally). >>> >>> This is a use-case that I'm skeptical we can support robustly in >>> ParaView esp. in all modes it operates (client-server etc). I am not >>> convinced it's that useful besides debugging, however. We can sure add >>> a "reload" button to manually reimport the module, but that's not >>> exactly what you want. But I'll stay posted. >>> >> >> do you have a specific situation in mind regarding the reloading? Since the module uses Python's native functionality for reloading modules, I would assume that if we can load it, we can reload it. I agree however that checking whether the source has changed is a bit more delicate. >> >> Besides, I think that a Reload button would be perfect, especially if it did an Apply at the same time. I was considering adding a checkbox that ends up calling Modified() on the vtk Algorithm object upon checking/unchecking, do you know of a better solution using only existing ParaView features? >> >>> >>> > The main issue going forward I can see right now involves passing parameters to Python. Right now I have a C++ method SetStringProperty(name, value) and use a with 2 elements. Now suppose I want to have a FileName property so that SetStringProperty("filename", value) is called when the FileName property is set to value. Do you know how to achieve this with the existing mechanisms, for example is it possible to have a StringVectorProperty with 2 elements where the first one is hidden and set to a default value? >>> >>> Are you aware of this post: >>> https://blog.kitware.com/easy-customization-of-the-paraview-python-programmable-filter-property-panel/ >> >> >> Thanks, This was exactly what I was looking for. Just out of curiosity, how does the "magic" work here? I.e. how does PV decide whether to call SetProperty(value) or SetProperty(name, value)? >> >> I also added a HDF5 Reader plugin to the github repository as an example. >> >> Best, >> Bob From andreamnt94 at gmail.com Mon Jun 18 10:10:40 2018 From: andreamnt94 at gmail.com (Andrea Mantovani) Date: Mon, 18 Jun 2018 16:10:40 +0200 Subject: [Paraview-developers] What are the ways to show numeric values come from filter output? Message-ID: Hi all, I'm writting a filter takes in input two mesh and gives as output the Hausdorff Distance (so a numeric value). Now I have to show this result in Paraview and the only way that I know is using the Field Data, so attaching to a (deep) copy of one of the two mesh in input a field data with the distance value. Now the result is visible into the `Information` section as array and this is fine. But, are there different ways to display a numeric value? And is it possible show the result as single integer and not as array with the same values? Actually the class vtkFieldData wants only array as input for its methods, therefore I don't see alternative solutions but it's just asking. Best regards, Andrea Mantovani -------------- next part -------------- An HTML attachment was scrubbed... URL: From cory.quammen at kitware.com Mon Jun 18 10:47:04 2018 From: cory.quammen at kitware.com (Cory Quammen) Date: Mon, 18 Jun 2018 10:47:04 -0400 Subject: [Paraview-developers] What are the ways to show numeric values come from filter output? In-Reply-To: References: Message-ID: Andrea, But, are there different ways to display a numeric value? And is it > possible show the result as single integer and not as array with the same > values? Actually the class vtkFieldData wants only array as input for its > methods, therefore I don't see alternative solutions but it's just asking. > Not really :-) Field data is generally the way to go for storing and displaying such quantities. Best regards, Cory p.s. We are moving community support for ParaView to https://discourse.paraview.org. Head over there and sign up to post future questions. > > Best regards, > Andrea Mantovani > _______________________________________________ > Powered by www.kitware.com > > ParaView development discussion is moving! Please visit > https://discourse.paraview.org/ for future posts. > > Visit other Kitware open-source projects at > http://www.kitware.com/opensource/opensource.html > > Search the list archives at: > http://markmail.org/search/?q=Paraview-developers > > Follow this link to subscribe/unsubscribe: > https://public.kitware.com/mailman/listinfo/paraview-developers > -- Cory Quammen Staff R&D Engineer Kitware, Inc. -------------- next part -------------- An HTML attachment was scrubbed... URL: From cory.quammen at kitware.com Tue Jun 19 13:41:07 2018 From: cory.quammen at kitware.com (Cory Quammen) Date: Tue, 19 Jun 2018 13:41:07 -0400 Subject: [Paraview-developers] ParaView 5.5.2 now available Message-ID: The ParaView team is happy to announce that ParaView 5.5.2 is available for download at https://www.paraview.org/download/ Release notes are available at https://blog.kitware.com/paraview-5-5-2-release-notes/ In addition, ParaView?s git repository and superbuild repository have been tagged with ?v5.5.2?. Thanks! The ParaView team -- Cory Quammen Staff R&D Engineer Kitware, Inc. From utkarsh.ayachit at kitware.com Wed Jun 27 11:36:18 2018 From: utkarsh.ayachit at kitware.com (Utkarsh Ayachit) Date: Wed, 27 Jun 2018 11:36:18 -0400 Subject: [Paraview-developers] ANN: Kitware is hiring Message-ID: Folks, If you enjoy working with VTK/ParaView/VTK-m and tools like these and love programming, why not be a part of the team? We are looking to hire visualization developers to our Scientific Computing team. If you are a talented visualization researcher and developer with strong C++ skills, please consider applying. You will join a great team and work on many interesting and challenging technical problems. Here is the job posting [1]. For a complete listing of open positions, checkout jobs.kitware.com [2] [1] https://hire.withgoogle.com/public/jobs/kitwarecom/view/P_AAAAAADAAADKG9Ea3a6iiv [2] https://jobs.kitware.com/