From marcus.hanwell at kitware.com Wed Feb 1 10:50:55 2017 From: marcus.hanwell at kitware.com (Marcus D. Hanwell) Date: Wed, 1 Feb 2017 10:50:55 -0500 Subject: [Paraview-developers] Buildbots migrated to Qt5 In-Reply-To: <20170131203811.GA18716@megas.kitware.com> References: <20170131203811.GA18716@megas.kitware.com> Message-ID: On Tue, Jan 31, 2017 at 3:38 PM, Ben Boeckel wrote: > Nearly all of the dashboards which test the GUI are now testing Qt5 > (ista and bigmac are the exceptions). Since lots of builder names were > changing anyways, we took the chance to change builders from: > > +opengl2 -> nothing (assumed) > +qt5 -> nothing (assumed) > It looks like there are some issues likely related to this on today's dashboard. I was trying to test a simple bump of VTK and am seeing D:/buildbot/894462a7/build/Plugins/CatalystScriptGenerator/pqCPPluginManagerImplementation.h(43): Error: Undefined interface that looks related to Qt 5 perhaps, and Could NOT find LZ4 (missing: LZ4_LIBRARIES LZ4_INCLUDE_DIRS) which seems to be on a number of other entries, but as far as I can see unrelated to Qt 5. From ben.boeckel at kitware.com Wed Feb 1 11:16:41 2017 From: ben.boeckel at kitware.com (Ben Boeckel) Date: Wed, 1 Feb 2017 11:16:41 -0500 Subject: [Paraview-developers] Buildbots migrated to Qt5 In-Reply-To: References: <20170131203811.GA18716@megas.kitware.com> Message-ID: <20170201161641.GC27687@megas.kitware.com> On Wed, Feb 01, 2017 at 10:50:55 -0500, Marcus D. Hanwell wrote: > D:/buildbot/894462a7/build/Plugins/CatalystScriptGenerator/pqCPPluginManagerImplementation.h(43): > Error: Undefined interface This looks to be a 5.8 thing on Windows; 5.7.0 doesn't have this issue. I'll try and get to look at this more today. > that looks related to Qt 5 perhaps, and > > Could NOT find LZ4 (missing: LZ4_LIBRARIES LZ4_INCLUDE_DIRS) Enabling Qt5 required lz4 on this build; I installed the package and restarted the failed build I saw; if there are others, let me know. --Ben From amitprabhakar05 at gmail.com Wed Feb 1 12:48:21 2017 From: amitprabhakar05 at gmail.com (Amit Prabhakar) Date: Wed, 1 Feb 2017 23:18:21 +0530 Subject: [Paraview-developers] Strange Problem with vtkKdTreePointLocator Message-ID: <16F103E9-1879-49F0-9909-22CE29ED7445@gmail.com> Hello All! I am facing a strange problem with vtkKdTreePointLocator class that says: ERROR : In /path/to/VTK-build/Common/DataModel/vtkLocator.cxx line 49 vtkPointLocator (0xf132d0): Input Not set I am setting the vtkKdtreePointLocator using a polydata. The poly data get 2-3 points and a cell added to it, in a for loop. After every loop operation, we update the poly data, the kdtreelocator and BuildLocator(). vtkKdTreePontLocator *kdt = vtkKdTreePointLocator::New(); kdt->SetDataSet(polydata_new); for(int i=0;i<1000;i++) { ?. //the operations to add a few points and a cell to polydata_new kdt->SetDataSet(polydata_new); kdt->BuildLocator(); kdt->Update(); } This seems like a simple operation, but am not able to figure out why this happens. Your help can put my brains straight. Thanks in advance! -------------- next part -------------- An HTML attachment was scrubbed... URL: From utkarsh.ayachit at kitware.com Wed Feb 1 13:23:42 2017 From: utkarsh.ayachit at kitware.com (Utkarsh Ayachit) Date: Wed, 1 Feb 2017 13:23:42 -0500 Subject: [Paraview-developers] Strange Problem with vtkKdTreePointLocator In-Reply-To: <16F103E9-1879-49F0-9909-22CE29ED7445@gmail.com> References: <16F103E9-1879-49F0-9909-22CE29ED7445@gmail.com> Message-ID: Seems to me that an incremental-point-locator may be better suited for your use-case. See http://www.vtk.org/doc/nightly/html/classvtkIncrementalPointLocator.html. You may want to use one of its subclasses instead. On Wed, Feb 1, 2017 at 12:48 PM, Amit Prabhakar wrote: > Hello All! > > > I am facing a strange problem with vtkKdTreePointLocator class that says: > > *ERROR : In /path/to/VTK-build/Common/DataModel/vtkLocator.cxx line 49* > *vtkPointLocator (0xf132d0): Input Not set* > > > I am setting the vtkKdtreePointLocator using a polydata. The poly data get > 2-3 points and a cell added to it, in a for loop. After every loop > operation, we update the poly data, the kdtreelocator and BuildLocator(). > > *vtkKdTreePontLocator *kdt = vtkKdTreePointLocator::New();* > *kdt->SetDataSet(polydata_new);* > > *for(int i=0;i<1000;i++)* > *{* > * ?. //the operations to add a few points and a cell to polydata_new * > * point. Do some point insertion to polydata_new>* > > * kdt->SetDataSet(polydata_new);* > * kdt->BuildLocator();* > * kdt->Update();* > > > *}* > > > This seems like a simple operation, but am not able to figure out why this > happens. Your help can put my brains straight. > > Thanks in advance! > > _______________________________________________ > 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= > Paraview-developers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/paraview-developers > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From ben.boeckel at kitware.com Wed Feb 1 14:53:54 2017 From: ben.boeckel at kitware.com (Ben Boeckel) Date: Wed, 1 Feb 2017 14:53:54 -0500 Subject: [Paraview-developers] Buildbots migrated to Qt5 In-Reply-To: <20170201161641.GC27687@megas.kitware.com> References: <20170131203811.GA18716@megas.kitware.com> <20170201161641.GC27687@megas.kitware.com> Message-ID: <20170201195354.GA4822@megas.kitware.com> On Wed, Feb 01, 2017 at 11:16:41 -0500, Ben Boeckel wrote: > This looks to be a 5.8 thing on Windows; 5.7.0 doesn't have this issue. > I'll try and get to look at this more today. Indeed, it's a 5.8 issue. It's patched locally on the machines; trying to get it upstream now for 5.8.1. > Enabling Qt5 required lz4 on this build; I installed the package and > restarted the failed build I saw; if there are others, let me know. All required packages have been installed on `vall`. --Ben From jfavre at cscs.ch Thu Feb 2 07:58:41 2017 From: jfavre at cscs.ch (Favre Jean) Date: Thu, 2 Feb 2017 12:58:41 +0000 Subject: [Paraview-developers] OSPRay, server-side, parallel Message-ID: <0EB9B6375711A04B820E6B6F5CCA9F6843799661@MBX111.d.ethz.ch> Hello folks I have been trying to do some server-side OSPRay renderings. Am not sure of the state of the implementation. I am using the lastest git pull of ParaView and OSPRay. Have compiled OSPRay with Intel's icc compiler (17.0.1) with TBB. Have compiled ParaView with GNU. The system is haswell-based. Trying different levels of concurrency in batch mode (1 pvserver per node, but several MPI-based pvservers), I am getting different images (different shadows). The zones were shadows are dimmer (or stronger) seem to follow diagonal lines. It's pretty curious. another thing I have noticed is while in interactive mode with a GUI, moving the mouse results in the model being displaced widely across the screen, with empty regions popping up. On mouse release (still render), the model is shown in the right place. Interestingly, if I create a camera animation track (orbit), it all plays smoothly. I'd be happy to share images, models, and scripts with developers. Let me know of your experience. TIA Jean/CSCS From ben.boeckel at kitware.com Thu Feb 2 10:14:02 2017 From: ben.boeckel at kitware.com (Ben Boeckel) Date: Thu, 2 Feb 2017 10:14:02 -0500 Subject: [Paraview-developers] Buildbots migrated to Qt5 In-Reply-To: <20170131203811.GA18716@megas.kitware.com> References: <20170131203811.GA18716@megas.kitware.com> Message-ID: <20170202151402.GA2102@megas.kitware.com> On Tue, Jan 31, 2017 at 15:38:11 -0500, Ben Boeckel wrote: > Nearly all of the dashboards which test the GUI are now testing Qt5 > (ista and bigmac are the exceptions). Since lots of builder names were > changing anyways, we took the chance to change builders from: > > +opengl2 -> nothing (assumed) > +qt5 -> nothing (assumed) > > and builders doing either the old OpenGL backend or Qt4 now explicitly > have: > > +opengl1 > +qt4 > > in their build names. I think I've fixed `nemesis` and I've restarted recent MR builds for that machine. There may be a few test failures yet, particularly some spinbox tests and a pqTestUtility failure. `vall` has visitbridge issues, but Cory is looking into those, so those can be ignored (for now). --Ben From dave.demarle at kitware.com Thu Feb 2 14:05:10 2017 From: dave.demarle at kitware.com (David E DeMarle) Date: Thu, 2 Feb 2017 14:05:10 -0500 Subject: [Paraview-developers] OSPRay, server-side, parallel In-Reply-To: <0EB9B6375711A04B820E6B6F5CCA9F6843799661@MBX111.d.ethz.ch> References: <0EB9B6375711A04B820E6B6F5CCA9F6843799661@MBX111.d.ethz.ch> Message-ID: On Thu, Feb 2, 2017 at 7:58 AM, Favre Jean wrote: > Hello folks > > I have been trying to do some server-side OSPRay renderings. Am not sure > of the state of the implementation. I am using the lastest git pull of > ParaView and OSPRay. Have compiled OSPRay with Intel's icc compiler > (17.0.1) with TBB. Have compiled ParaView with GNU. The system is > haswell-based. > > Trying different levels of concurrency in batch mode (1 pvserver per node, > but several MPI-based pvservers), I am getting different images (different > shadows). The zones were shadows are dimmer (or stronger) seem to follow > diagonal lines. It's pretty curious. > Unfortunately secondary rays will not be correct in the distributed memory parallel, high spatial resolution type context that ParaView is built for. Without some mix of either sending rays to data or data to rays, shadows, reflections, refractions, ambient occlusion sampling, and pixel supersampling based antialiasing will all show artifacts. Intel and TACC are working toward that but it is a ways out from being exposed in ParaView to the best of my knowledge. If data is relatively small you can run ospray itself in MPI parallel to speed things up, but that won't let you render any more geometry than can fit in everyone's local memory. > another thing I have noticed is while in interactive mode with a GUI, > moving the mouse results in the model being displaced widely across the > screen, with empty regions popping up. On mouse release (still render), the > model is shown in the right place. Interestingly, if I create a camera > animation track (orbit), it all plays smoothly. > > This is a known issue, but one that is not yet on the bug tracker. Please report it there to help me remember to fix it. > I'd be happy to share images, models, and scripts with developers. Let me > know of your experience. > > TIA > > Jean/CSCS > _______________________________________________ > 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: > http://public.kitware.com/mailman/listinfo/paraview-developers > -------------- next part -------------- An HTML attachment was scrubbed... URL: From ben.boeckel at kitware.com Thu Feb 2 14:52:14 2017 From: ben.boeckel at kitware.com (Ben Boeckel) Date: Thu, 2 Feb 2017 14:52:14 -0500 Subject: [Paraview-developers] New merge request robot behaviors Message-ID: <20170202195214.GA12927@megas.kitware.com> Hi all, Recently, Brad and I have been working on revamping the kwrobot from its initial implementation. It now has unit tests and its source is available (see below). In addition, buildbot will be changing its default behavior from "test this and all future updates" to "test just this update". Basically, `--oneshot` is now assumed and the flag itself is ignored. This was announced a while ago without any disagreements, but is finally going into effect. Merge requests will need the new robot to check them. It will do this if the merge request changes or on a manual `Do: check`. # What does this mean for me? Ideally, not much. The only behavior changes (should) be: - If you select "Delete source branch" when creating a merge request, the robot will now delete it for you when it is merged. - No more "Failed to merge the tree because ???" errors. - Failures in git commits are now formatted better with Markdown rather than dumped out as a pre-formatted block. - The kwrobot user will mark comments with `Do:` commands with a robot emoji (?) to indicate that it handled the command. In the case of success, it will *not* make its own comment (buildbot will still make its comment for `Do: test` commands), but instead just do the action and put a status check on the latest commit on the merge request. - No more race conditions; saying `Do: test` before kwrobot gives its pass/fail check will not be ignored. - Lighter buildbot loads by only building explicitly requested merge requests. # Why this new code? The original robot was written with VTK and ParaView's workflows in mind, however the goal of porting the CMake workflow over exposed severe design limitations in it. With its lack of a test suite, it made making those changes potentially dangerous. It also lacked logging and robustness against errors, as evidenced by the "Failed to merge" problems of late. # Where can I report issues? In general, on the [ghostflow-director issues][] page. We may move your issue to a different repository depending on where it belongs. # Where is the code? All of the repositories are available under the [utils group][]. A general breakdown for the repositories relevant to the VTK, VTK-m, ParaView, and CMB projects: - rust-git-workarea: contains core building blocks for operations used elsewhere - rust-git-checks: checks performed for on git commits - rust-gitlab: communication with Gitlab - rust-ghostflow: implementation of the `Do:` commands (check, test, merge, ExternalData sync); mechanisms of the workflow live here - webhook-listen: listens for webhook events from Gitlab - ghostflow-director: the robot itself; handles jobs from Gitlab and performs the relevant actions; policies of the workflow live here Thanks, --Ben [ghostflow-director issues]: https://gitlab.kitware.com/utils/ghostflow-director/issues [utils group]: https://gitlab.kitware.com/groups/utils From fabidi89 at vt.edu Fri Feb 3 12:13:16 2017 From: fabidi89 at vt.edu (Faiz Abidi) Date: Fri, 3 Feb 2017 12:13:16 -0500 Subject: [Paraview-developers] [EXTERNAL] Re: Scripting image compression parameters In-Reply-To: References: Message-ID: Hi Alan, Sorry for a delayed response, but I missed this email somehow. So, I actually have tried the trace function ParaView supports, but unfortunately, it doesn't trace the settings I set for the image compression settings. I guess I'll have to do it manually then, but I would be interested to know if anyone else has tried to script the compression parameters. I am kind of surprised if this is not possible to script. Best, On Mon, Jan 30, 2017 at 4:55 PM, Scott, W Alan wrote: > My best guess would be to try to trace the save screenshot functionality, > and see what is set. Sorry, that?s the best I have... > > > > Alan > > > > *From:* Paraview-developers [mailto:paraview-developers- > bounces at paraview.org] *On Behalf Of *Faiz Abidi > *Sent:* Monday, January 30, 2017 2:14 PM > *To:* paraview-developers at paraview.org; paraview at paraview.org > *Subject:* [EXTERNAL] Re: [Paraview-developers] Scripting image > compression parameters > > > > Not having heard back from anyone, I am guessing no one has done this kind > of scripting before? Anyone? > > > > On Wed, Jan 25, 2017 at 9:43 AM, Faiz Abidi wrote: > > Hello ParaView community, > > > > ParaView provides various image compression configuration options > . I > was wondering how to go about scripting this so that I can test setting > various parameters in a script. > > > > I did check some of ParaView modules but couldn't find anything helpful. > > > > Any pointers from anyone would be helpful. > > > > Best, > -- > > Faiz Abidi | Master's Student at Virginia Tech | www.faizabidi.com | > +1-540-998-6636 <(540)%20998-6636> > > > > > > -- > > Faiz Abidi | Master's Student at Virginia Tech | www.faizabidi.com | > +1-540-998-6636 <(540)%20998-6636> > -- Faiz Abidi | Master's Student at Virginia Tech | www.faizabidi.com | +1-540-998-6636 -------------- next part -------------- An HTML attachment was scrubbed... URL: From MKAn at securemissionsolutions.com Mon Feb 6 09:51:34 2017 From: MKAn at securemissionsolutions.com (An, Michael K.) Date: Mon, 6 Feb 2017 14:51:34 +0000 Subject: [Paraview-developers] State Models, Data Models in ParaViewWeb Message-ID: <1486392693594.27431@securemissionsolutions.com> ?Hello everyone, Some questions over using the ParaViewWeb API, related to state and data models: - What is the suggested procedure for loading our own data into a paraviewweb viewer/diagram? Specifically, do we have to create our own JSON for the state models based on the visualization components that we desire, and then load that using the CompositeClosureHelper.newInstance method, with the desired providers in the closure? Or are there other recommended workflows? - It seems like these state models are distinct from any ParaView format. Is that correct? ? - What about constructing our own QueryDataModel? Looking at the constructor, it seems like you need to have the data fields specified in JSON. Do we write these JSON ourselves, like the ones available in tonic.io? - Also, it looks like LineChartViewer follows a different pattern than other viewers, like ChartViewer, for example. The constructor doesn't take in a DataModel, rather just some data in an array. Does that mean that this Viewer isn't designed to be used like the others, perhaps just intended to be used in conjuction? Thanks much, Mike -------------- next part -------------- An HTML attachment was scrubbed... URL: From MKAn at securemissionsolutions.com Mon Feb 6 09:52:58 2017 From: MKAn at securemissionsolutions.com (An, Michael K.) Date: Mon, 6 Feb 2017 14:52:58 +0000 Subject: [Paraview-developers] State Models, Data Models in ParaViewWeb Message-ID: <1486392777093.43777@securemissionsolutions.com> Hello everyone, Some questions over using the ParaViewWeb API, related to state and data models: - What is the suggested procedure for loading our own data into a paraviewweb viewer/diagram? Specifically, do we have to create our own JSON for the state models based on the visualization components that we desire, and then load that using the CompositeClosureHelper.newInstance method, with the desired providers in the closure? Or are there other recommended workflows? - It seems like these state models are distinct from any ParaView format. Is that correct? ? - What about constructing our own QueryDataModel? Looking at the constructor, it seems like you need to have the data fields specified in JSON. Do we write these JSON ourselves, like the ones available in tonic.io? - Also, it looks like LineChartViewer follows a different pattern than other viewers, like ChartViewer, for example. The constructor doesn't take in a DataModel, rather just some data in an array. Does that mean that this Viewer isn't designed to be used like the others, perhaps just intended to be used in conjuction? Thanks much, Mike -------------- next part -------------- An HTML attachment was scrubbed... URL: From sebastien.jourdain at kitware.com Mon Feb 6 10:50:09 2017 From: sebastien.jourdain at kitware.com (Sebastien Jourdain) Date: Mon, 6 Feb 2017 08:50:09 -0700 Subject: [Paraview-developers] State Models, Data Models in ParaViewWeb In-Reply-To: <1486392693594.27431@securemissionsolutions.com> References: <1486392693594.27431@securemissionsolutions.com> Message-ID: Hi Mike, Thanks for your questions on ParaViewWeb: 1) The ParaViewWeb diagram expect specific providers and data structure. But the providers are built in a way that you can have some freedom regarding the data retrieval implementation. Since those diagram expect specific format, you can either compute them directly that way on the server side or it could be your glue code that would be responsible for doing the data conversion while ensuring a lower bandwidth usage if you have more compact representation of the same information. Usually we gather several providers into a single object using the CompositeClosureHelper.newInstance within the closure. But depending on your needs you may find other usage easier to manage. 2) Yes they are, but that does not mean you can not rely on ParaView to build some of those data structures and rely on the WebSocket connection between the JavaScript client and the ParaView server to feed those providers. 3) The QueryDataModel infrastructure is a bit different but could be used/adapted to work with some of the diagram/viewers. The QueryDataModel is meant to issue GET request based on a specific URL pattern. It is true that you could put a custom web server which could perform the computation dynamically based on the request. But so far we've only used it to retrieve static data of various type (See ArcticViewer: https://kitware.github.io/arctic-viewer/). But a QueryDataModel could be used to feed some of the providers. Regarding tonic.io, we've migrated all the code from tonic.* into ParaViewWeb to simplify access, usage and documentation. 4) I think the LineChartViewer was intended to be used as a component (a piece in something bigger) while the ChartViewer use the AbstractViewerMenu component to make it a first citizen in the ArcticViewer deployment. Also ChartViewer expect a chartBuilder which will then be used by the PlotlyRenderer for performing the rendering of the data, while the other one is performing the rendering internally using the canvas API. So yes, they are not meant for the same usage. But if you are looking for a library for making charts you can give a look at https://github.com/Kitware/candela Hope that answer most of your questions, Seb On Mon, Feb 6, 2017 at 7:51 AM, An, Michael K. < MKAn at securemissionsolutions.com> wrote: > ?Hello everyone, > > > Some questions over using the ParaViewWeb API, related to state and data > models: > > > - What is the suggested procedure for loading our own data into > a paraviewweb viewer/diagram? Specifically, do we have to create our own > JSON for the state models based on the visualization components that we > desire, and then load that using the CompositeClosureHelper.newInstance > method, with the desired providers in the closure? Or are there other > recommended workflows? > > > - It seems like these state models are distinct from any ParaView format. > Is that correct? > > ? > > - What about constructing our own QueryDataModel? Looking at the > constructor, it seems like you need to have the data fields specified in > JSON. Do we write these JSON ourselves, like the ones available in > tonic.io? > > > - Also, it looks like LineChartViewer follows a different pattern than > other viewers, like ChartViewer, for example. The constructor doesn't take > in a DataModel, rather just some data in an array. Does that mean that this > Viewer isn't designed to be used like the others, perhaps just intended to > be used in conjuction? > > > Thanks much, > > Mike > > _______________________________________________ > 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= > Paraview-developers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/paraview-developers > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From rustem.khabetdinov at gmail.com Mon Feb 6 12:32:43 2017 From: rustem.khabetdinov at gmail.com (Rustem Khabetdinov) Date: Mon, 6 Feb 2017 20:32:43 +0300 Subject: [Paraview-developers] Collapse tree view after new child added Message-ID: Hello, Is it possible to collapse tree view after new child(filter) was added? We tried to change the behaviour in pqPipelineBrowserWidget but when the line 124 : QObject::connect(this->PipelineModel, SIGNAL(firstChildAdded(const QModelIndex&)), this,SLOT(expandWithModelIndexTranslation(const QModelIndex&))); was commented Paraview crashed all time. Best Regards, Rustem. -------------- next part -------------- An HTML attachment was scrubbed... URL: From zig.shagit at ya.ru Mon Feb 6 12:45:01 2017 From: zig.shagit at ya.ru (=?utf-8?B?0KjQsNCz0LjRgiDQl9C40LPQsNC90YjQuNC9?=) Date: Mon, 06 Feb 2017 20:45:01 +0300 Subject: [Paraview-developers] Collapse tree view after new child added In-Reply-To: References: Message-ID: <2023181486403101@web7h.yandex.ru> An HTML attachment was scrubbed... URL: From sumeet.kumar507 at gmail.com Mon Feb 6 14:04:14 2017 From: sumeet.kumar507 at gmail.com (sumeet kumar) Date: Mon, 6 Feb 2017 11:04:14 -0800 Subject: [Paraview-developers] Showing actual time in the Time Display Message-ID: Hey All, I have been struggling with displaying actual time value in the Time display bar [image: Inline image 1] Can you tell me how to do that. Thanks Sumeet -- Sumeet Kumar Sinha Graduate Student Phone: (+1) <%28%2B91%29%209910516219>5306018271 Website : http://www.sumeetksinha.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image.png Type: image/png Size: 1831 bytes Desc: not available URL: From sumeet.kumar507 at gmail.com Mon Feb 6 16:50:36 2017 From: sumeet.kumar507 at gmail.com (sumeet kumar) Date: Mon, 6 Feb 2017 13:50:36 -0800 Subject: [Paraview-developers] Build standalone plugins that can be added on paraview on different linux machine and windows if possible. Message-ID: Hey all, I am a grad student of University of California Davis. I have been on developing code large scale Soil Structure Simulator Real-ESSI . I have developed plugin for that which works perfectly on Ubuntu platforms. Is there any way I can distribute my plugin library so that users don't need to compile from source code. Also, I want to make my plugin available to windows users as well. What is the most easiest way to achieve that ?? Your help is highly appreciated. Thanks Sumeet -- Sumeet Kumar Sinha Graduate Student Phone: (+1) <%28%2B91%29%209910516219>5306018271 Website : http://www.sumeetksinha.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL: From biddisco at cscs.ch Mon Feb 6 18:02:41 2017 From: biddisco at cscs.ch (Biddiscombe, John A.) Date: Mon, 6 Feb 2017 23:02:41 +0000 Subject: [Paraview-developers] Getting test data/images In-Reply-To: References: Message-ID: <14CD6D07-FE96-4A74-9683-57DF73200752@cscs.ch> I just found PARAVIEW_DATA_EXCLUDE_FROM_ALL after I clicked send ?. From: John Biddiscombe Date: Tuesday, 7 February 2017 at 00:00 To: ParaView Developers Subject: Getting test data/images Hi all I haven?t touched paraview in almost a year and am trying to build some of my old plugins and vtk extensions. Problem is that from a clean checkout of paraview on a new laptop, when I run the tests, they mostly fail because there?s no valid test images. I?ve searched and searched for how to trigger the download of test data/baseline images, but I can?t find the secret information. Typical errors are 495: ERROR: In /Users/biddisco/src/paraview/VTK/IO/XML/vtkXMLReader.cxx, line 261 495: vtkXMLUnstructuredGridReader (0x7ffb6e539a10): Error opening file /Users/biddisco/build/pv5/ExternalData/VTK/Testing/Data/quadraticTetra01.vtu How do I do it? I used to know this stuff ? (I looked through a lot of wiki pages and could not find the info) Thanks JB -- John Biddiscombe, email:biddisco @.at.@ cscs.ch http://www.cscs.ch/ CSCS, Swiss National Supercomputing Centre | Tel: +41 (91) 610.82.07 Via Trevano 131, 6900 Lugano, Switzerland | Fax: +41 (91) 610.82.82 -------------- next part -------------- An HTML attachment was scrubbed... URL: From biddisco at cscs.ch Mon Feb 6 18:00:34 2017 From: biddisco at cscs.ch (Biddiscombe, John A.) Date: Mon, 6 Feb 2017 23:00:34 +0000 Subject: [Paraview-developers] Getting test data/images Message-ID: Hi all I haven?t touched paraview in almost a year and am trying to build some of my old plugins and vtk extensions. Problem is that from a clean checkout of paraview on a new laptop, when I run the tests, they mostly fail because there?s no valid test images. I?ve searched and searched for how to trigger the download of test data/baseline images, but I can?t find the secret information. Typical errors are 495: ERROR: In /Users/biddisco/src/paraview/VTK/IO/XML/vtkXMLReader.cxx, line 261 495: vtkXMLUnstructuredGridReader (0x7ffb6e539a10): Error opening file /Users/biddisco/build/pv5/ExternalData/VTK/Testing/Data/quadraticTetra01.vtu How do I do it? I used to know this stuff ? (I looked through a lot of wiki pages and could not find the info) Thanks JB -- John Biddiscombe, email:biddisco @.at.@ cscs.ch http://www.cscs.ch/ CSCS, Swiss National Supercomputing Centre | Tel: +41 (91) 610.82.07 Via Trevano 131, 6900 Lugano, Switzerland | Fax: +41 (91) 610.82.82 -------------- next part -------------- An HTML attachment was scrubbed... URL: From wascott at sandia.gov Mon Feb 6 21:14:50 2017 From: wascott at sandia.gov (Scott, W Alan) Date: Tue, 7 Feb 2017 02:14:50 +0000 Subject: [Paraview-developers] [EXTERNAL] Re: Scripting image compression parameters In-Reply-To: References: Message-ID: <485e1ce5e1b2419db1c4a3387767ae3a@ES01AMSNLNT.srn.sandia.gov> Sounds like a bug. Mind writing it up? If you want, if you give me step by step details on what is failing, I can also write it up for you. Alan From: Faiz Abidi [mailto:fabidi89 at vt.edu] Sent: Friday, February 3, 2017 10:13 AM To: Scott, W Alan Cc: paraview-developers at paraview.org; paraview at paraview.org Subject: Re: [EXTERNAL] Re: [Paraview-developers] Scripting image compression parameters Hi Alan, Sorry for a delayed response, but I missed this email somehow. So, I actually have tried the trace function ParaView supports, but unfortunately, it doesn't trace the settings I set for the image compression settings. I guess I'll have to do it manually then, but I would be interested to know if anyone else has tried to script the compression parameters. I am kind of surprised if this is not possible to script. Best, On Mon, Jan 30, 2017 at 4:55 PM, Scott, W Alan > wrote: My best guess would be to try to trace the save screenshot functionality, and see what is set. Sorry, that?s the best I have... Alan From: Paraview-developers [mailto:paraview-developers-bounces at paraview.org] On Behalf Of Faiz Abidi Sent: Monday, January 30, 2017 2:14 PM To: paraview-developers at paraview.org; paraview at paraview.org Subject: [EXTERNAL] Re: [Paraview-developers] Scripting image compression parameters Not having heard back from anyone, I am guessing no one has done this kind of scripting before? Anyone? On Wed, Jan 25, 2017 at 9:43 AM, Faiz Abidi > wrote: Hello ParaView community, ParaView provides various image compression configuration options. I was wondering how to go about scripting this so that I can test setting various parameters in a script. I did check some of ParaView modules but couldn't find anything helpful. Any pointers from anyone would be helpful. Best, -- Faiz Abidi | Master's Student at Virginia Tech | www.faizabidi.com | +1-540-998-6636 -- Faiz Abidi | Master's Student at Virginia Tech | www.faizabidi.com | +1-540-998-6636 -- Faiz Abidi | Master's Student at Virginia Tech | www.faizabidi.com | +1-540-998-6636 -------------- next part -------------- An HTML attachment was scrubbed... URL: From biddisco at cscs.ch Tue Feb 7 09:10:20 2017 From: biddisco at cscs.ch (Biddiscombe, John A.) Date: Tue, 7 Feb 2017 14:10:20 +0000 Subject: [Paraview-developers] Purging deprecated pqProxyPanel and subclasses In-Reply-To: References: Message-ID: <884073A6-1039-465F-B405-F544F43A3031@cscs.ch> Utkarsh I?m building some plugins that use pqProxyPanel and ADD_PARAVIEW_OBJECT_PANEL which are now both obsolete. What should one do with these panels in general? I?ve also go some stuff that uses pqAutoGeneratedObjectPanel that seems to have gone away Is there anything I can use to replace the autogenerated panel ? I presume the functionality is absorbed into one of the base panels? Thanks JB On 19.01.17, 16:35, "Paraview-developers on behalf of Utkarsh Ayachit" wrote: The MR has now been merged in `git/master`. As for ParaView 5.3, code with "old panels" will no longer build. Utkarsh On Wed, Jun 22, 2016 at 12:55 PM, Utkarsh Ayachit wrote: > FYI, here the MR for this change: > > https://gitlab.kitware.com/paraview/paraview/merge_requests/845 > > Utkarsh > > On Tue, Jun 21, 2016 at 12:12 PM, Utkarsh Ayachit > wrote: >> Folks, >> >> With 5.1 out, I would like to once and for all remove all pqProxyPanel >> and subclasses (the old panels as we fondly call them). All classes in >> this hierarchy [1] will disappear after this change. Hopefully this >> doesn't catch anyone by surprise. Please do let me know if you need >> some more time. >> >> Thanks >> Utkarsh >> >> [1] http://www.paraview.org/ParaView3/Doc/Nightly/www/cxx-doc/classpqProxyPanel.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=Paraview-developers Follow this link to subscribe/unsubscribe: http://public.kitware.com/mailman/listinfo/paraview-developers From ben.boeckel at kitware.com Tue Feb 7 09:30:47 2017 From: ben.boeckel at kitware.com (Ben Boeckel) Date: Tue, 7 Feb 2017 09:30:47 -0500 Subject: [Paraview-developers] Build standalone plugins that can be added on paraview on different linux machine and windows if possible. In-Reply-To: References: Message-ID: <20170207143047.GA8124@megas.kitware.com> On Mon, Feb 06, 2017 at 13:50:36 -0800, sumeet kumar wrote: > I am a grad student of University of California Davis. I have been on > developing code large scale Soil Structure Simulator Real-ESSI > . I have developed plugin for > that which works perfectly on Ubuntu platforms. > > Is there any way I can distribute my plugin library so that users don't > need to compile from source code. > > Also, I want to make my plugin available to windows users as well. What is > the most easiest way to achieve that ?? You can add it to the superbuild to build the plugin such that it works for the platforms we build 5.2.0 for using the documentation here: https://gitlab.kitware.com/paraview/paraview-superbuild/#external-plugins The plugin can be grabbed from the `install/` directory inside of the superbuild. Currently we don't distribute SDKs, so this is the most reliable way to build plugins. For Linux, we use a CentOS6 base image for the release binaries. Windows is built using VS 2013 Community edition. macOS releases are built with 10.8 as their minimum version. However, if you're distributing to a known set of people, building and distributing your own packages is probably easiest (see the `Packaging` section in the readme). I'll look at getting more docs for distributing custom plugins written up. --Ben From utkarsh.ayachit at kitware.com Tue Feb 7 09:33:47 2017 From: utkarsh.ayachit at kitware.com (Utkarsh Ayachit) Date: Tue, 7 Feb 2017 09:33:47 -0500 Subject: [Paraview-developers] Purging deprecated pqProxyPanel and subclasses In-Reply-To: <884073A6-1039-465F-B405-F544F43A3031@cscs.ch> References: <884073A6-1039-465F-B405-F544F43A3031@cscs.ch> Message-ID: John, This explains the design/implementation: http://www.paraview.org/Wiki/ParaView/Properties_Panel Hope that gives you some pointers. Utkarsh On Tue, Feb 7, 2017 at 9:10 AM, Biddiscombe, John A. wrote: > Utkarsh > > I?m building some plugins that use pqProxyPanel and ADD_PARAVIEW_OBJECT_PANEL which are now both obsolete. > What should one do with these panels in general? > > I?ve also go some stuff that uses pqAutoGeneratedObjectPanel that seems to have gone away > > Is there anything I can use to replace the autogenerated panel ? I presume the functionality is absorbed into one of the base panels? > > Thanks > > JB > > > On 19.01.17, 16:35, "Paraview-developers on behalf of Utkarsh Ayachit" wrote: > > The MR has now been merged in `git/master`. As for ParaView 5.3, code > with "old panels" will no longer build. > > Utkarsh > > On Wed, Jun 22, 2016 at 12:55 PM, Utkarsh Ayachit > wrote: > > FYI, here the MR for this change: > > > > https://gitlab.kitware.com/paraview/paraview/merge_requests/845 > > > > Utkarsh > > > > On Tue, Jun 21, 2016 at 12:12 PM, Utkarsh Ayachit > > wrote: > >> Folks, > >> > >> With 5.1 out, I would like to once and for all remove all pqProxyPanel > >> and subclasses (the old panels as we fondly call them). All classes in > >> this hierarchy [1] will disappear after this change. Hopefully this > >> doesn't catch anyone by surprise. Please do let me know if you need > >> some more time. > >> > >> Thanks > >> Utkarsh > >> > >> [1] http://www.paraview.org/ParaView3/Doc/Nightly/www/cxx-doc/classpqProxyPanel.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=Paraview-developers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/paraview-developers > > From fabidi89 at vt.edu Tue Feb 7 16:57:32 2017 From: fabidi89 at vt.edu (Faiz Abidi) Date: Tue, 7 Feb 2017 16:57:32 -0500 Subject: [Paraview-developers] [EXTERNAL] Re: Scripting image compression parameters In-Reply-To: <485e1ce5e1b2419db1c4a3387767ae3a@ES01AMSNLNT.srn.sandia.gov> References: <485e1ce5e1b2419db1c4a3387767ae3a@ES01AMSNLNT.srn.sandia.gov> Message-ID: You mean create a bug ticket? Let me try to clarify a bit more on what I am doing. I am using my Ubuntu machine for this. 1. I start the trace just like normal from "Tools -> Start Trace". I choose all properties to track. 2. I go to "Edit -> Settings -> Render View" and select settings from the "Remote/Parallel Rendering Options." 3. I stop trace, but nothing actually gets traced. Does this make sense? I am not sure if this is a bug, or the trace functionality was never meant to trace the settings but only the properties of the scene. If you or anyone has any more insights to this, please do share. I won't mind writing my own scripts to do this if it is even possible. On Mon, Feb 6, 2017 at 9:14 PM, Scott, W Alan wrote: > Sounds like a bug. Mind writing it up? If you want, if you give me step > by step details on what is failing, I can also write it up for you. > > > > Alan > > > > *From:* Faiz Abidi [mailto:fabidi89 at vt.edu] > *Sent:* Friday, February 3, 2017 10:13 AM > *To:* Scott, W Alan > *Cc:* paraview-developers at paraview.org; paraview at paraview.org > *Subject:* Re: [EXTERNAL] Re: [Paraview-developers] Scripting image > compression parameters > > > > Hi Alan, > > > > Sorry for a delayed response, but I missed this email somehow. > > > > So, I actually have tried the trace function ParaView supports, but > unfortunately, it doesn't trace the settings I set for the image > compression settings. > > > > I guess I'll have to do it manually then, but I would be interested to > know if anyone else has tried to script the compression parameters. I am > kind of surprised if this is not possible to script. > > > > Best, > > > > On Mon, Jan 30, 2017 at 4:55 PM, Scott, W Alan wrote: > > My best guess would be to try to trace the save screenshot functionality, > and see what is set. Sorry, that?s the best I have... > > > > Alan > > > > *From:* Paraview-developers [mailto:paraview-developers- > bounces at paraview.org] *On Behalf Of *Faiz Abidi > *Sent:* Monday, January 30, 2017 2:14 PM > *To:* paraview-developers at paraview.org; paraview at paraview.org > *Subject:* [EXTERNAL] Re: [Paraview-developers] Scripting image > compression parameters > > > > Not having heard back from anyone, I am guessing no one has done this kind > of scripting before? Anyone? > > > > On Wed, Jan 25, 2017 at 9:43 AM, Faiz Abidi wrote: > > Hello ParaView community, > > > > ParaView provides various image compression configuration options > . I > was wondering how to go about scripting this so that I can test setting > various parameters in a script. > > > > I did check some of ParaView modules but couldn't find anything helpful. > > > > Any pointers from anyone would be helpful. > > > > Best, > -- > > Faiz Abidi | Master's Student at Virginia Tech | www.faizabidi.com | > +1-540-998-6636 <(540)%20998-6636> > > > > > > -- > > Faiz Abidi | Master's Student at Virginia Tech | www.faizabidi.com | > +1-540-998-6636 <(540)%20998-6636> > > > > > > -- > > Faiz Abidi | Master's Student at Virginia Tech | www.faizabidi.com | > +1-540-998-6636 <(540)%20998-6636> > -- Faiz Abidi | Master's Student at Virginia Tech | www.faizabidi.com | +1-540-998-6636 -------------- next part -------------- An HTML attachment was scrubbed... URL: From mathieu.westphal at kitware.com Wed Feb 8 21:48:52 2017 From: mathieu.westphal at kitware.com (Mathieu Westphal) Date: Thu, 9 Feb 2017 03:48:52 +0100 Subject: [Paraview-developers] Support for accentuated and special characters for filepath in ParaView Message-ID: Hello ParaView never supported opening file or directory with special character in their name. Some non-english native speaker have been requesting this for a long time, and we are happy to announce that we now have support for it. It works well in the different system we have been able to test it on, but if anybody can try on other type of alphabet (Chinese, Russian, Korean), please test it, especially on windows. It has just been merged into ParaView master, so be sure to use the last git master of ParaView for testing this. Mathieu Westphal PS : I've CC this mail to a few people who have expressed direct interest to this feature. -------------- next part -------------- An HTML attachment was scrubbed... URL: From daanvanvugt at gmail.com Thu Feb 9 03:07:09 2017 From: daanvanvugt at gmail.com (Daan van Vugt) Date: Thu, 9 Feb 2017 09:07:09 +0100 Subject: [Paraview-developers] vtkPythonProgrammableFilter data persistence Message-ID: Hi, Would it be possible to cache some data in this filter? Or is it rerun with a clean execution environment every time? In my case I'm working on a file reader for a custom format. I know the grid will not change 99% of the time (and can detect when it does), so it would make sense to keep the points and cells and just change the data arrays. I cannot find a way to store these for the next time the reader is called. Does anyone have any suggestion? Thanks, Daan -------------- next part -------------- An HTML attachment was scrubbed... URL: From biddisco at cscs.ch Thu Feb 9 08:13:18 2017 From: biddisco at cscs.ch (Biddiscombe, John A.) Date: Thu, 9 Feb 2017 13:13:18 +0000 Subject: [Paraview-developers] vglrun paraview non working over vnc Message-ID: <3A9E5FB1-6140-4748-9EE8-4A9B3B7F75CF@cscs.ch> With the new paraview, I?m not able to do a vglrun paraview over a VNC connection. There is a segfault in vtkXOpenGLRenderwindow::CreateAWindow Is there a workaround to this? Thanks JB -------------- next part -------------- An HTML attachment was scrubbed... URL: From daanvanvugt at gmail.com Thu Feb 9 08:29:16 2017 From: daanvanvugt at gmail.com (Daan van Vugt) Date: Thu, 9 Feb 2017 14:29:16 +0100 Subject: [Paraview-developers] vtkPythonProgrammableFilter data persistence In-Reply-To: References: Message-ID: Exactly what I was looking for, thanks! Daan On Thu, Feb 9, 2017 at 2:24 PM, Utkarsh Ayachit wrote: > You should be able to add an attribute to `self` that gets preserved > across executions, a simple test case shown in the attached screenshot. > > On Thu, Feb 9, 2017 at 3:07 AM, Daan van Vugt > wrote: > >> Hi, >> >> Would it be possible to cache some data in this filter? >> Or is it rerun with a clean execution environment every time? >> >> In my case I'm working on a file reader for a custom format. >> I know the grid will not change 99% of the time (and can detect when it >> does), >> so it would make sense to keep the points and cells and just change the >> data arrays. >> >> I cannot find a way to store these for the next time the reader is called. >> Does anyone have any suggestion? >> >> Thanks, >> Daan >> >> _______________________________________________ >> 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= >> Paraview-developers >> >> Follow this link to subscribe/unsubscribe: >> http://public.kitware.com/mailman/listinfo/paraview-developers >> >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: From utkarsh.ayachit at kitware.com Thu Feb 9 08:24:50 2017 From: utkarsh.ayachit at kitware.com (Utkarsh Ayachit) Date: Thu, 9 Feb 2017 08:24:50 -0500 Subject: [Paraview-developers] vtkPythonProgrammableFilter data persistence In-Reply-To: References: Message-ID: You should be able to add an attribute to `self` that gets preserved across executions, a simple test case shown in the attached screenshot. On Thu, Feb 9, 2017 at 3:07 AM, Daan van Vugt wrote: > Hi, > > Would it be possible to cache some data in this filter? > Or is it rerun with a clean execution environment every time? > > In my case I'm working on a file reader for a custom format. > I know the grid will not change 99% of the time (and can detect when it > does), > so it would make sense to keep the points and cells and just change the > data arrays. > > I cannot find a way to store these for the next time the reader is called. > Does anyone have any suggestion? > > Thanks, > Daan > > _______________________________________________ > 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= > Paraview-developers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/paraview-developers > > -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: Screen Shot 2017-02-09 at 8.24.11 AM.png Type: image/png Size: 275118 bytes Desc: not available URL: From dan.lipsa at kitware.com Thu Feb 9 11:53:31 2017 From: dan.lipsa at kitware.com (Dan Lipsa) Date: Thu, 9 Feb 2017 11:53:31 -0500 Subject: [Paraview-developers] vglrun paraview non working over vnc In-Reply-To: <3A9E5FB1-6140-4748-9EE8-4A9B3B7F75CF@cscs.ch> References: <3A9E5FB1-6140-4748-9EE8-4A9B3B7F75CF@cscs.ch> Message-ID: Hi John, I just run a recent version of ParaView I had on my machine through vglrun. I started ParaView, created a wavelet and viewed it as a volume. The ParaView version was fff463d928c94192847c02e6855f405240450ff2 from Jan 19. So, the problem may be the different version of ParaView you have or a vlg configuration problem/graphics card driver problem. Dan On Thu, Feb 9, 2017 at 8:13 AM, Biddiscombe, John A. wrote: > With the new paraview, I?m not able to do a vglrun paraview over a VNC > connection. > > > > There is a segfault in vtkXOpenGLRenderwindow::CreateAWindow > > > > Is there a workaround to this? > > > > Thanks > > > > JB > > _______________________________________________ > 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= > Paraview-developers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/paraview-developers > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From dan.lipsa at kitware.com Thu Feb 9 11:58:35 2017 From: dan.lipsa at kitware.com (Dan Lipsa) Date: Thu, 9 Feb 2017 11:58:35 -0500 Subject: [Paraview-developers] vglrun paraview non working over vnc In-Reply-To: References: <3A9E5FB1-6140-4748-9EE8-4A9B3B7F75CF@cscs.ch> Message-ID: Some additional information: I am running vnc to my Linux Ubuntu box from a mac laptop. Dan On Thu, Feb 9, 2017 at 11:53 AM, Dan Lipsa wrote: > Hi John, > I just run a recent version of ParaView I had on my machine through > vglrun. I started ParaView, created a wavelet and viewed it as a volume. > The ParaView version was > fff463d928c94192847c02e6855f405240450ff2 from Jan 19. > > So, the problem may be the different version of ParaView you have or a > vlg configuration problem/graphics card driver problem. > > Dan > > > > > > On Thu, Feb 9, 2017 at 8:13 AM, Biddiscombe, John A. > wrote: > >> With the new paraview, I?m not able to do a vglrun paraview over a VNC >> connection. >> >> >> >> There is a segfault in vtkXOpenGLRenderwindow::CreateAWindow >> >> >> >> Is there a workaround to this? >> >> >> >> Thanks >> >> >> >> JB >> >> _______________________________________________ >> 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= >> Paraview-developers >> >> Follow this link to subscribe/unsubscribe: >> http://public.kitware.com/mailman/listinfo/paraview-developers >> >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: From biddisco at cscs.ch Fri Feb 10 03:32:07 2017 From: biddisco at cscs.ch (Biddiscombe, John A.) Date: Fri, 10 Feb 2017 08:32:07 +0000 Subject: [Paraview-developers] vglrun paraview non working over vnc In-Reply-To: References: <3A9E5FB1-6140-4748-9EE8-4A9B3B7F75CF@cscs.ch> Message-ID: Dan Thanks for that info. That at least rules out the possibility that the new rendering backend in paraview is the cause of my trouble. I secretly hoped that it was caused by the change to that rather than some other system change here. I will keep playing. JB From: Dan Lipsa Date: Thursday, 9 February 2017 at 17:58 To: John Biddiscombe Cc: ParaView Developers Subject: Re: [Paraview-developers] vglrun paraview non working over vnc Some additional information: I am running vnc to my Linux Ubuntu box from a mac laptop. Dan On Thu, Feb 9, 2017 at 11:53 AM, Dan Lipsa > wrote: Hi John, I just run a recent version of ParaView I had on my machine through vglrun. I started ParaView, created a wavelet and viewed it as a volume. The ParaView version was fff463d928c94192847c02e6855f405240450ff2 from Jan 19. So, the problem may be the different version of ParaView you have or a vlg configuration problem/graphics card driver problem. Dan On Thu, Feb 9, 2017 at 8:13 AM, Biddiscombe, John A. > wrote: With the new paraview, I?m not able to do a vglrun paraview over a VNC connection. There is a segfault in vtkXOpenGLRenderwindow::CreateAWindow Is there a workaround to this? Thanks JB _______________________________________________ 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=Paraview-developers Follow this link to subscribe/unsubscribe: http://public.kitware.com/mailman/listinfo/paraview-developers -------------- next part -------------- An HTML attachment was scrubbed... URL: From biddisco at cscs.ch Fri Feb 10 05:33:17 2017 From: biddisco at cscs.ch (Biddiscombe, John A.) Date: Fri, 10 Feb 2017 10:33:17 +0000 Subject: [Paraview-developers] vglrun paraview non working over vnc In-Reply-To: References: <3A9E5FB1-6140-4748-9EE8-4A9B3B7F75CF@cscs.ch> Message-ID: <58A91D5E-2272-44D5-90A6-BD00119CC90C@cscs.ch> Update : I found an old installation of paraview based on 5.0.0 and it runs fine, so we tested the new and old paraviews using a freshly compiled virtualgl downloaded from git master and older versions and the new paraview fails every time, whereas the old runs fine. When I get time I will recompile everything in debug mode and investigate where/why the segfault is really happening. Thanks JB From: Paraview-developers on behalf of John Biddiscombe Date: Friday, 10 February 2017 at 09:32 To: Dan Lipsa Cc: ParaView Developers Subject: Re: [Paraview-developers] vglrun paraview non working over vnc Dan Thanks for that info. That at least rules out the possibility that the new rendering backend in paraview is the cause of my trouble. I secretly hoped that it was caused by the change to that rather than some other system change here. I will keep playing. JB From: Dan Lipsa Date: Thursday, 9 February 2017 at 17:58 To: John Biddiscombe Cc: ParaView Developers Subject: Re: [Paraview-developers] vglrun paraview non working over vnc Some additional information: I am running vnc to my Linux Ubuntu box from a mac laptop. Dan On Thu, Feb 9, 2017 at 11:53 AM, Dan Lipsa > wrote: Hi John, I just run a recent version of ParaView I had on my machine through vglrun. I started ParaView, created a wavelet and viewed it as a volume. The ParaView version was fff463d928c94192847c02e6855f405240450ff2 from Jan 19. So, the problem may be the different version of ParaView you have or a vlg configuration problem/graphics card driver problem. Dan On Thu, Feb 9, 2017 at 8:13 AM, Biddiscombe, John A. > wrote: With the new paraview, I?m not able to do a vglrun paraview over a VNC connection. There is a segfault in vtkXOpenGLRenderwindow::CreateAWindow Is there a workaround to this? Thanks JB _______________________________________________ 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=Paraview-developers Follow this link to subscribe/unsubscribe: http://public.kitware.com/mailman/listinfo/paraview-developers -------------- next part -------------- An HTML attachment was scrubbed... URL: From dan.lipsa at kitware.com Fri Feb 10 09:47:43 2017 From: dan.lipsa at kitware.com (Dan Lipsa) Date: Fri, 10 Feb 2017 09:47:43 -0500 Subject: [Paraview-developers] vglrun paraview non working over vnc In-Reply-To: <58A91D5E-2272-44D5-90A6-BD00119CC90C@cscs.ch> References: <3A9E5FB1-6140-4748-9EE8-4A9B3B7F75CF@cscs.ch> <58A91D5E-2272-44D5-90A6-BD00119CC90C@cscs.ch> Message-ID: Some more info about my environment: server glx vendor string: VirtualGL server glx version string: 1.4 OpenGL vendor string: NVIDIA Corporation OpenGL renderer string: Quadro K2000/PCIe/SSE2 OpenGL core profile version string: 4.5.0 NVIDIA 361.42 I also confirmed that the ParaView I tried was compiled with OpenGL2. On Fri, Feb 10, 2017 at 5:33 AM, Biddiscombe, John A. wrote: > Update : I found an old installation of paraview based on 5.0.0 and it > runs fine, so we tested the new and old paraviews using a freshly compiled > virtualgl downloaded from git master and older versions and the new > paraview fails every time, whereas the old runs fine. > > > > When I get time I will recompile everything in debug mode and investigate > where/why the segfault is really happening. > > > > Thanks > > > > JB > > > > *From: *Paraview-developers on > behalf of John Biddiscombe > *Date: *Friday, 10 February 2017 at 09:32 > *To: *Dan Lipsa > > *Cc: *ParaView Developers > *Subject: *Re: [Paraview-developers] vglrun paraview non working over vnc > > > > Dan > > > > Thanks for that info. That at least rules out the possibility that the new > rendering backend in paraview is the cause of my trouble. I secretly hoped > that it was caused by the change to that rather than some other system > change here. I will keep playing. > > > > JB > > > > *From: *Dan Lipsa > *Date: *Thursday, 9 February 2017 at 17:58 > *To: *John Biddiscombe > *Cc: *ParaView Developers > *Subject: *Re: [Paraview-developers] vglrun paraview non working over vnc > > > > Some additional information: I am running vnc to my Linux Ubuntu box from > a mac laptop. > > > > Dan > > > > > > On Thu, Feb 9, 2017 at 11:53 AM, Dan Lipsa wrote: > > Hi John, > > I just run a recent version of ParaView I had on my machine through > vglrun. I started ParaView, created a wavelet and viewed it as a volume. > > The ParaView version was > > fff463d928c94192847c02e6855f405240450ff2 from Jan 19. > > > > So, the problem may be the different version of ParaView you have or a > vlg configuration problem/graphics card driver problem. > > > > Dan > > > > > > > > > > > > On Thu, Feb 9, 2017 at 8:13 AM, Biddiscombe, John A. > wrote: > > With the new paraview, I?m not able to do a vglrun paraview over a VNC > connection. > > > > There is a segfault in vtkXOpenGLRenderwindow::CreateAWindow > > > > Is there a workaround to this? > > > > Thanks > > > > JB > > > > _______________________________________________ > 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= > Paraview-developers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/paraview-developers > > > > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From cory.quammen at kitware.com Fri Feb 10 17:28:41 2017 From: cory.quammen at kitware.com (Cory Quammen) Date: Fri, 10 Feb 2017 17:28:41 -0500 Subject: [Paraview-developers] ParaView 5.3.0-RC1 tagged Message-ID: Folks, v5.3.0-RC1 has been tagged. Please do not merge anything into `master` until the dashboards have cycled through and been able to build to the binaries for this version. I'll send an email when it is okay to merge to `master` again. Thanks, Cory -- Cory Quammen Staff R&D Engineer Kitware, Inc. -------------- next part -------------- An HTML attachment was scrubbed... URL: From cory.quammen at kitware.com Sat Feb 11 17:56:26 2017 From: cory.quammen at kitware.com (Cory Quammen) Date: Sat, 11 Feb 2017 17:56:26 -0500 Subject: [Paraview-developers] [Paraview] [EXTERNAL] Re: Scripting image compression parameters In-Reply-To: References: <485e1ce5e1b2419db1c4a3387767ae3a@ES01AMSNLNT.srn.sandia.gov> Message-ID: Faiz, The Python trace is not expected to record application-level settings. For some settings, it could possibly be reasonable to record them in a trace and play them back, but other settings it doesn't make much sense because they require an application restart, for example, or only affect aspects of the user interface. Best, Cory On Tue, Feb 7, 2017 at 4:57 PM, Faiz Abidi wrote: > You mean create a bug ticket? > > Let me try to clarify a bit more on what I am doing. I am using my Ubuntu > machine for this. > > 1. I start the trace just like normal from "Tools -> Start Trace". I choose > all properties to track. > 2. I go to "Edit -> Settings -> Render View" and select settings from the > "Remote/Parallel Rendering Options." > 3. I stop trace, but nothing actually gets traced. > > Does this make sense? I am not sure if this is a bug, or the trace > functionality was never meant to trace the settings but only the properties > of the scene. > > If you or anyone has any more insights to this, please do share. I won't > mind writing my own scripts to do this if it is even possible. > > On Mon, Feb 6, 2017 at 9:14 PM, Scott, W Alan wrote: >> >> Sounds like a bug. Mind writing it up? If you want, if you give me step >> by step details on what is failing, I can also write it up for you. >> >> >> >> Alan >> >> >> >> From: Faiz Abidi [mailto:fabidi89 at vt.edu] >> Sent: Friday, February 3, 2017 10:13 AM >> To: Scott, W Alan >> Cc: paraview-developers at paraview.org; paraview at paraview.org >> Subject: Re: [EXTERNAL] Re: [Paraview-developers] Scripting image >> compression parameters >> >> >> >> Hi Alan, >> >> >> >> Sorry for a delayed response, but I missed this email somehow. >> >> >> >> So, I actually have tried the trace function ParaView supports, but >> unfortunately, it doesn't trace the settings I set for the image compression >> settings. >> >> >> >> I guess I'll have to do it manually then, but I would be interested to >> know if anyone else has tried to script the compression parameters. I am >> kind of surprised if this is not possible to script. >> >> >> >> Best, >> >> >> >> On Mon, Jan 30, 2017 at 4:55 PM, Scott, W Alan wrote: >> >> My best guess would be to try to trace the save screenshot functionality, >> and see what is set. Sorry, that?s the best I have... >> >> >> >> Alan >> >> >> >> From: Paraview-developers >> [mailto:paraview-developers-bounces at paraview.org] On Behalf Of Faiz Abidi >> Sent: Monday, January 30, 2017 2:14 PM >> To: paraview-developers at paraview.org; paraview at paraview.org >> Subject: [EXTERNAL] Re: [Paraview-developers] Scripting image compression >> parameters >> >> >> >> Not having heard back from anyone, I am guessing no one has done this kind >> of scripting before? Anyone? >> >> >> >> On Wed, Jan 25, 2017 at 9:43 AM, Faiz Abidi wrote: >> >> Hello ParaView community, >> >> >> >> ParaView provides various image compression configuration options. I was >> wondering how to go about scripting this so that I can test setting various >> parameters in a script. >> >> >> >> I did check some of ParaView modules but couldn't find anything helpful. >> >> >> >> Any pointers from anyone would be helpful. >> >> >> >> Best, >> -- >> >> Faiz Abidi | Master's Student at Virginia Tech | www.faizabidi.com | >> +1-540-998-6636 >> >> >> >> >> >> -- >> >> Faiz Abidi | Master's Student at Virginia Tech | www.faizabidi.com | >> +1-540-998-6636 >> >> >> >> >> >> -- >> >> Faiz Abidi | Master's Student at Virginia Tech | www.faizabidi.com | >> +1-540-998-6636 > > > > > -- > Faiz Abidi | Master's Student at Virginia Tech | www.faizabidi.com | > +1-540-998-6636 > > _______________________________________________ > 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&D Engineer Kitware, Inc. From fabidi89 at vt.edu Sat Feb 11 18:40:33 2017 From: fabidi89 at vt.edu (Faiz Abidi) Date: Sat, 11 Feb 2017 18:40:33 -0500 Subject: [Paraview-developers] [Paraview] [EXTERNAL] Re: Scripting image compression parameters In-Reply-To: References: <485e1ce5e1b2419db1c4a3387767ae3a@ES01AMSNLNT.srn.sandia.gov> Message-ID: I see your point, and that's what I figured too. The trace is not meant to track those settings. Not sure what path I'll take from here, either try to somehow custom script the image compression parameters or do it manually (a big pain!). Thanks for your help though. On Sat, Feb 11, 2017 at 5:56 PM, Cory Quammen wrote: > Faiz, > > The Python trace is not expected to record application-level settings. > For some settings, it could possibly be reasonable to record them in a > trace and play them back, but other settings it doesn't make much > sense because they require an application restart, for example, or > only affect aspects of the user interface. > > Best, > Cory > > > On Tue, Feb 7, 2017 at 4:57 PM, Faiz Abidi wrote: > > You mean create a bug ticket? > > > > Let me try to clarify a bit more on what I am doing. I am using my Ubuntu > > machine for this. > > > > 1. I start the trace just like normal from "Tools -> Start Trace". I > choose > > all properties to track. > > 2. I go to "Edit -> Settings -> Render View" and select settings from the > > "Remote/Parallel Rendering Options." > > 3. I stop trace, but nothing actually gets traced. > > > > Does this make sense? I am not sure if this is a bug, or the trace > > functionality was never meant to trace the settings but only the > properties > > of the scene. > > > > If you or anyone has any more insights to this, please do share. I won't > > mind writing my own scripts to do this if it is even possible. > > > > On Mon, Feb 6, 2017 at 9:14 PM, Scott, W Alan > wrote: > >> > >> Sounds like a bug. Mind writing it up? If you want, if you give me > step > >> by step details on what is failing, I can also write it up for you. > >> > >> > >> > >> Alan > >> > >> > >> > >> From: Faiz Abidi [mailto:fabidi89 at vt.edu] > >> Sent: Friday, February 3, 2017 10:13 AM > >> To: Scott, W Alan > >> Cc: paraview-developers at paraview.org; paraview at paraview.org > >> Subject: Re: [EXTERNAL] Re: [Paraview-developers] Scripting image > >> compression parameters > >> > >> > >> > >> Hi Alan, > >> > >> > >> > >> Sorry for a delayed response, but I missed this email somehow. > >> > >> > >> > >> So, I actually have tried the trace function ParaView supports, but > >> unfortunately, it doesn't trace the settings I set for the image > compression > >> settings. > >> > >> > >> > >> I guess I'll have to do it manually then, but I would be interested to > >> know if anyone else has tried to script the compression parameters. I am > >> kind of surprised if this is not possible to script. > >> > >> > >> > >> Best, > >> > >> > >> > >> On Mon, Jan 30, 2017 at 4:55 PM, Scott, W Alan > wrote: > >> > >> My best guess would be to try to trace the save screenshot > functionality, > >> and see what is set. Sorry, that?s the best I have... > >> > >> > >> > >> Alan > >> > >> > >> > >> From: Paraview-developers > >> [mailto:paraview-developers-bounces at paraview.org] On Behalf Of Faiz > Abidi > >> Sent: Monday, January 30, 2017 2:14 PM > >> To: paraview-developers at paraview.org; paraview at paraview.org > >> Subject: [EXTERNAL] Re: [Paraview-developers] Scripting image > compression > >> parameters > >> > >> > >> > >> Not having heard back from anyone, I am guessing no one has done this > kind > >> of scripting before? Anyone? > >> > >> > >> > >> On Wed, Jan 25, 2017 at 9:43 AM, Faiz Abidi wrote: > >> > >> Hello ParaView community, > >> > >> > >> > >> ParaView provides various image compression configuration options. I was > >> wondering how to go about scripting this so that I can test setting > various > >> parameters in a script. > >> > >> > >> > >> I did check some of ParaView modules but couldn't find anything helpful. > >> > >> > >> > >> Any pointers from anyone would be helpful. > >> > >> > >> > >> Best, > >> -- > >> > >> Faiz Abidi | Master's Student at Virginia Tech | www.faizabidi.com | > >> +1-540-998-6636 > >> > >> > >> > >> > >> > >> -- > >> > >> Faiz Abidi | Master's Student at Virginia Tech | www.faizabidi.com | > >> +1-540-998-6636 > >> > >> > >> > >> > >> > >> -- > >> > >> Faiz Abidi | Master's Student at Virginia Tech | www.faizabidi.com | > >> +1-540-998-6636 > > > > > > > > > > -- > > Faiz Abidi | Master's Student at Virginia Tech | www.faizabidi.com | > > +1-540-998-6636 > > > > _______________________________________________ > > 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&D Engineer > Kitware, Inc. > -- Faiz Abidi | Master's Student at Virginia Tech | www.faizabidi.com | +1-540-998-6636 -------------- next part -------------- An HTML attachment was scrubbed... URL: From cory.quammen at kitware.com Sun Feb 12 08:14:10 2017 From: cory.quammen at kitware.com (Cory Quammen) Date: Sun, 12 Feb 2017 08:14:10 -0500 Subject: [Paraview-developers] ParaView 5.3.0-RC1 tagged In-Reply-To: References: Message-ID: The binaries for v5.3.0-RC1 have been built. Please feel free to resume merging into master. Cory On Feb 10, 2017 5:28 PM, "Cory Quammen" wrote: > Folks, > > v5.3.0-RC1 has been tagged. Please do not merge anything into `master` > until the dashboards have cycled through and been able to build to the > binaries for this version. > > I'll send an email when it is okay to merge to `master` again. > > Thanks, > Cory > > -- > Cory Quammen > Staff R&D Engineer > Kitware, Inc. > -------------- next part -------------- An HTML attachment was scrubbed... URL: From cory.quammen at kitware.com Mon Feb 13 11:49:48 2017 From: cory.quammen at kitware.com (Cory Quammen) Date: Mon, 13 Feb 2017 11:49:48 -0500 Subject: [Paraview-developers] ParaView 5.3.0 Release Candidate 1 binaries are available for download Message-ID: Folks, Binaries and source code zip files and tar balls for ParaView 5.3.0 Release Candidate 1 are now available for download from http://www.paraview.org/download/ Please let us know if you run into any problems with this release candidate. Sincerely, Cory -- Cory Quammen Staff R&D Engineer Kitware, Inc. From cory.quammen at kitware.com Mon Feb 13 15:05:28 2017 From: cory.quammen at kitware.com (Cory Quammen) Date: Mon, 13 Feb 2017 15:05:28 -0500 Subject: [Paraview-developers] ParaView 5.3.0 Release Candidate 1 binaries are available for download In-Reply-To: References: Message-ID: There are a couple known issues in ParaView 5.3.0-RC1 that we plan to address in the next release candidate: * The Mac OS X binary was built and packaged with Qt4 instead of Qt5 * On Mac OS X, the included BDATReader, BDATSeriesReader, and GLGPUVortexFilter will not load (Issue 17170) * On Mac OS X, a crash occurs when adding a source when Auto MPI is enabled (Issue 17171) * Enabling the OSPRay renderer sometimes results in a crash. (Issue 17172) - Cory On Mon, Feb 13, 2017 at 11:49 AM, Cory Quammen wrote: > Folks, > > Binaries and source code zip files and tar balls for ParaView 5.3.0 > Release Candidate 1 are now available for download from > > http://www.paraview.org/download/ > > Please let us know if you run into any problems with this release candidate. > > Sincerely, > Cory > > -- > Cory Quammen > Staff R&D Engineer > Kitware, Inc. -- Cory Quammen Staff R&D Engineer Kitware, Inc. From zig.shagit at ya.ru Thu Feb 16 04:35:32 2017 From: zig.shagit at ya.ru (Shagit Ziganshin) Date: Thu, 16 Feb 2017 12:35:32 +0300 Subject: [Paraview-developers] Paraview translation to another languages Message-ID: <5406231487237732@web10h.yandex.ru> Hello! I want to implement in Paraview localization to other languages by using the translation module of Qt. But I found the problem that some widgets are declared in XML and have no idea how to implement them in translation functions (like QObject::tr). Can anyone suggest ways to get around these limitations? Or is it impossible in theory? Shagit Ziganshin From utkarsh.ayachit at kitware.com Thu Feb 16 09:18:42 2017 From: utkarsh.ayachit at kitware.com (Utkarsh Ayachit) Date: Thu, 16 Feb 2017 09:18:42 -0500 Subject: [Paraview-developers] Paraview translation to another languages In-Reply-To: <5406231487237732@web10h.yandex.ru> References: <5406231487237732@web10h.yandex.ru> Message-ID: Shagit, I believe a lot of the code that shows labels from XML on the UI doesn't go through QObject::tr() currently. The first step would be fix all of that to use tr(). A starting point will be pqProxyWidget. Utkarsh On Thu, Feb 16, 2017 at 4:35 AM, Shagit Ziganshin wrote: > Hello! > > I want to implement in Paraview localization to other languages by using > the translation module of Qt. But I found the problem that some widgets are > declared in XML and have no idea how to implement them in translation > functions (like QObject::tr). Can anyone suggest ways to get around these > limitations? Or is it impossible in theory? > > Shagit Ziganshin > _______________________________________________ > 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= > Paraview-developers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/paraview-developers > -------------- next part -------------- An HTML attachment was scrubbed... URL: From zig.shagit at ya.ru Thu Feb 16 10:56:30 2017 From: zig.shagit at ya.ru (=?utf-8?B?0KjQsNCz0LjRgiDQl9C40LPQsNC90YjQuNC9?=) Date: Thu, 16 Feb 2017 18:56:30 +0300 Subject: [Paraview-developers] Paraview translation to another languages In-Reply-To: References: <5406231487237732@web10h.yandex.ru> Message-ID: <8083251487260590@web28h.yandex.ru> An HTML attachment was scrubbed... URL: From utkarsh.ayachit at kitware.com Thu Feb 16 11:09:23 2017 From: utkarsh.ayachit at kitware.com (Utkarsh Ayachit) Date: Thu, 16 Feb 2017 11:09:23 -0500 Subject: [Paraview-developers] Paraview translation to another languages In-Reply-To: <8083251487260590@web28h.yandex.ru> References: <5406231487237732@web10h.yandex.ru> <8083251487260590@web28h.yandex.ru> Message-ID: Shagit, I must admit I have never looked into anything related to internationalization. With my limited understanding of this, they way I see it is there are two parts: 1. generate the translation that maps string A to translated string B. 2. make sure the application, before showing the string in the UI, does a lookup through the translation table via QObject::tr(). What I explained (or hoping to address) was (2). For (1), you'll have to manually (or via tool) process the xmls in ParaView to extract labels and documentation texts to determine the phrases that need to be translated (1). Hope that helps, but I hope someone more familiar with internationalization can chime in. Utkarsh On Thu, Feb 16, 2017 at 10:56 AM, ????? ???????? wrote: > Utkarsh, > > I really don't understand how to use default Qt translation tools, like > lupdate and lrelease, with non-source files (XML in our case). Things like > QT_TRANSLATE_NOOP wont work I think. > > I always thought lupdate parsing source code and seeking strings marked > with tr(), so I don't know how fixing pqProxyWidget will help us to > implementing localization. > > If I'm wrong, please correct me! > > Shagit Ziganshin > > > 16.02.2017, 17:18, "Utkarsh Ayachit" : > > Shagit, > > I believe a lot of the code that shows labels from XML on the UI doesn't > go through QObject::tr() currently. The first step would be fix all of that > to use tr(). A starting point will be pqProxyWidget. > > Utkarsh > > On Thu, Feb 16, 2017 at 4:35 AM, Shagit Ziganshin > wrote: > > Hello! > > I want to implement in Paraview localization to other languages by using > the translation module of Qt. But I found the problem that some widgets are > declared in XML and have no idea how to implement them in translation > functions (like QObject::tr). Can anyone suggest ways to get around these > limitations? Or is it impossible in theory? > > Shagit Ziganshin > _______________________________________________ > 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: > http://public.kitware.com/mailman/listinfo/paraview-developers > > > > > ????? ???????? > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From wascott at sandia.gov Fri Feb 17 14:49:36 2017 From: wascott at sandia.gov (Scott, W Alan) Date: Fri, 17 Feb 2017 19:49:36 +0000 Subject: [Paraview-developers] QXcbConnection error Message-ID: Has anyone seen this error? It occurs when running Linux 5.3.0 RC1, my own Superbuild run. After the error (which doesn't seem to fail), ParaView runs fine. QXcbConnection: XCB error: 148 (Unknown), sequence: 170, resource id: 0, major code: 140 (Unknown), minor code: 20 Thanks all, Alan -------------------------------------------------------- W. Alan Scott ParaView Support Manager SAIC Sandia National Laboratories, MS 0822 Org 9326 - Building 880 A1-K (505) 284-0932 FAX (505) 284-5619 --------------------------------------------------------- -------------- next part -------------- An HTML attachment was scrubbed... URL: From wascott at sandia.gov Fri Feb 17 21:42:20 2017 From: wascott at sandia.gov (Scott, W Alan) Date: Sat, 18 Feb 2017 02:42:20 +0000 Subject: [Paraview-developers] FW: [EXTERNAL] [Paraview] Examples of Field Variables Manipulation for Exodus Multi-block datasets In-Reply-To: References: Message-ID: <2a8a5abbd5d24dd182ef227ca71a4fa5@ES01AMSNLNT.srn.sandia.gov> Ping? Anyone have any ideas? Alan From: ParaView [mailto:paraview-bounces at paraview.org] On Behalf Of Dennis Conklin Sent: Wednesday, February 15, 2017 7:24 AM To: Paraview (paraview at paraview.org) Subject: [EXTERNAL] [Paraview] Examples of Field Variables Manipulation for Exodus Multi-block datasets All, I can't find a good example of manipulating Field Variables (Global Variables) in Exodus Multi-block datasets. For instance, I wrote a filter to calculate the total_volume of a mesh. Currently I print this out to the screen. I would like to add a Field variable of Total_volume but I have no idea how to do this. Does anyone have an example of how to access (read) field variables and/or how to add one. Thanks for any hints Dennis -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: ATT00001.txt URL: From wascott at sandia.gov Fri Feb 17 22:00:41 2017 From: wascott at sandia.gov (Scott, W Alan) Date: Sat, 18 Feb 2017 03:00:41 +0000 Subject: [Paraview-developers] [EXTERNAL] [Paraview] Examples of Field Variables Manipulation for Exodus Multi-block datasets In-Reply-To: <2a8a5abbd5d24dd182ef227ca71a4fa5@ES01AMSNLNT.srn.sandia.gov> References: <2a8a5abbd5d24dd182ef227ca71a4fa5@ES01AMSNLNT.srn.sandia.gov> Message-ID: My bad. Dennis replied that he had found the answer. Have a wonderful weekend, all! Alan From: Paraview-developers [mailto:paraview-developers-bounces at paraview.org] On Behalf Of Scott, W Alan Sent: Friday, February 17, 2017 7:42 PM To: dennis_conklin at goodyear.com; paraview-developers at paraview.org Subject: [Paraview-developers] FW: [EXTERNAL] [Paraview] Examples of Field Variables Manipulation for Exodus Multi-block datasets Ping? Anyone have any ideas? Alan From: ParaView [mailto:paraview-bounces at paraview.org] On Behalf Of Dennis Conklin Sent: Wednesday, February 15, 2017 7:24 AM To: Paraview (paraview at paraview.org) > Subject: [EXTERNAL] [Paraview] Examples of Field Variables Manipulation for Exodus Multi-block datasets All, I can't find a good example of manipulating Field Variables (Global Variables) in Exodus Multi-block datasets. For instance, I wrote a filter to calculate the total_volume of a mesh. Currently I print this out to the screen. I would like to add a Field variable of Total_volume but I have no idea how to do this. Does anyone have an example of how to access (read) field variables and/or how to add one. Thanks for any hints Dennis -------------- next part -------------- An HTML attachment was scrubbed... URL: From utkarsh.ayachit at kitware.com Sun Feb 19 11:58:49 2017 From: utkarsh.ayachit at kitware.com (Utkarsh Ayachit) Date: Sun, 19 Feb 2017 11:58:49 -0500 Subject: [Paraview-developers] QXcbConnection error In-Reply-To: References: Message-ID: Alan, Are you seeing that on the terminal or even in the ParaView Output window? Utkarsh On Fri, Feb 17, 2017 at 2:49 PM, Scott, W Alan wrote: > Has anyone seen this error? It occurs when running Linux 5.3.0 RC1, my > own Superbuild run. After the error (which doesn?t seem to fail), ParaView > runs fine. > > > > QXcbConnection: XCB error: 148 (Unknown), sequence: 170, resource id: 0, > major code: 140 (Unknown), minor code: 20 > > > > Thanks all, > > > > Alan > > > > -------------------------------------------------------- > > W. Alan Scott > > ParaView Support Manager > > > > SAIC > > Sandia National Laboratories, MS 0822 > > Org 9326 - Building 880 A1-K > > (505) 284-0932 FAX (505) 284-5619 > > --------------------------------------------------------- > > > > _______________________________________________ > 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= > Paraview-developers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/paraview-developers > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From rustem.khabetdinov at gmail.com Mon Feb 20 11:06:24 2017 From: rustem.khabetdinov at gmail.com (Rustem Khabetdinov) Date: Mon, 20 Feb 2017 19:06:24 +0300 Subject: [Paraview-developers] Orthographic View Message-ID: Hello, I want to change Orthographic Slice View and show surfaces instead of slices. What should I change in order to make this? Best Regards, Rustem -------------- next part -------------- An HTML attachment was scrubbed... URL: From utkarsh.ayachit at kitware.com Mon Feb 20 11:21:42 2017 From: utkarsh.ayachit at kitware.com (Utkarsh Ayachit) Date: Mon, 20 Feb 2017 11:21:42 -0500 Subject: [Paraview-developers] Orthographic View In-Reply-To: References: Message-ID: The changes needed for this are non-trivial. Essnetially, `vtkPVCompositeOrthographicSliceRepresentation` uses 3 `vtkGeometrySliceRepresentation` instances to show in the 3 orthographic views. You'll need to change those to be simply vtkGeometryRepresentation. On Mon, Feb 20, 2017 at 11:06 AM, Rustem Khabetdinov < rustem.khabetdinov at gmail.com> wrote: > Hello, > > I want to change Orthographic Slice View and show surfaces instead of > slices. What should I change in order to make this? > > Best Regards, > Rustem > > _______________________________________________ > 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= > Paraview-developers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/paraview-developers > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From wascott at sandia.gov Mon Feb 20 13:10:26 2017 From: wascott at sandia.gov (Scott, W Alan) Date: Mon, 20 Feb 2017 18:10:26 +0000 Subject: [Paraview-developers] [EXTERNAL] Re: QXcbConnection error In-Reply-To: References: Message-ID: <9b022e16f67c418187a988a6f355b967@ES01AMSNLNT.srn.sandia.gov> Terminal only. 5.2.0 does not show the issue. Alan From: Utkarsh Ayachit [mailto:utkarsh.ayachit at kitware.com] Sent: Sunday, February 19, 2017 9:59 AM To: Scott, W Alan Cc: paraview-developers at paraview.org Subject: [EXTERNAL] Re: [Paraview-developers] QXcbConnection error Alan, Are you seeing that on the terminal or even in the ParaView Output window? Utkarsh On Fri, Feb 17, 2017 at 2:49 PM, Scott, W Alan > wrote: Has anyone seen this error? It occurs when running Linux 5.3.0 RC1, my own Superbuild run. After the error (which doesn?t seem to fail), ParaView runs fine. QXcbConnection: XCB error: 148 (Unknown), sequence: 170, resource id: 0, major code: 140 (Unknown), minor code: 20 Thanks all, Alan -------------------------------------------------------- W. Alan Scott ParaView Support Manager SAIC Sandia National Laboratories, MS 0822 Org 9326 - Building 880 A1-K (505) 284-0932 FAX (505) 284-5619 --------------------------------------------------------- _______________________________________________ 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=Paraview-developers Follow this link to subscribe/unsubscribe: http://public.kitware.com/mailman/listinfo/paraview-developers -------------- next part -------------- An HTML attachment was scrubbed... URL: From utkarsh.ayachit at kitware.com Mon Feb 20 13:12:01 2017 From: utkarsh.ayachit at kitware.com (Utkarsh Ayachit) Date: Mon, 20 Feb 2017 13:12:01 -0500 Subject: [Paraview-developers] [EXTERNAL] Re: QXcbConnection error In-Reply-To: <9b022e16f67c418187a988a6f355b967@ES01AMSNLNT.srn.sandia.gov> References: <9b022e16f67c418187a988a6f355b967@ES01AMSNLNT.srn.sandia.gov> Message-ID: On Mon, Feb 20, 2017 at 1:10 PM, Scott, W Alan wrote: > Terminal only. 5.2.0 does not show the issue. Yes, it's a Qt 5 message to only shows up for 5.3. It's okay to ignore for now. Not sure how we can avoid printing it, we do exclude it from the Output Window. From amitprabhakar05 at gmail.com Tue Feb 21 12:07:43 2017 From: amitprabhakar05 at gmail.com (Amit Prabhakar) Date: Tue, 21 Feb 2017 22:37:43 +0530 Subject: [Paraview-developers] Strange Problem with vtkKdTreePointLocator In-Reply-To: <16F103E9-1879-49F0-9909-22CE29ED7445@gmail.com> References: <16F103E9-1879-49F0-9909-22CE29ED7445@gmail.com> Message-ID: <2E4B469E-6297-43DB-967C-82A4D02F6D98@gmail.com> Hi Utkarsh, Thanks for your suggestion. I used vtkOctreeIncrementalPointLocator class and it worked fine. It also helped me in managing the duplicate points inside a vtkPolydata. Any idea how a vtkCellArray class can filter the duplicate cells? Thanks again, > On Feb 1, 2017, at 23:18, Amit Prabhakar wrote: > > Hello All! > > > I am facing a strange problem with vtkKdTreePointLocator class that says: > > ERROR : In /path/to/VTK-build/Common/DataModel/vtkLocator.cxx line 49 > vtkPointLocator (0xf132d0): Input Not set > > > I am setting the vtkKdtreePointLocator using a polydata. The poly data get 2-3 points and a cell added to it, in a for loop. After every loop operation, we update the poly data, the kdtreelocator and BuildLocator(). > > vtkKdTreePontLocator *kdt = vtkKdTreePointLocator::New(); > kdt->SetDataSet(polydata_new); > > for(int i=0;i<1000;i++) > { > ?. //the operations to add a few points and a cell to polydata_new > > > kdt->SetDataSet(polydata_new); > kdt->BuildLocator(); > kdt->Update(); > > > } > > > This seems like a simple operation, but am not able to figure out why this happens. Your help can put my brains straight. > > Thanks in advance! -------------- next part -------------- An HTML attachment was scrubbed... URL: From cory.quammen at kitware.com Wed Feb 22 22:48:36 2017 From: cory.quammen at kitware.com (Cory Quammen) Date: Wed, 22 Feb 2017 22:48:36 -0500 Subject: [Paraview-developers] ParaView 5.3.0-RC2 tagged Message-ID: Folks, ParaView v5.3.0-RC2 has been tagged. Please do not merge anything into `master` until the dashboards have cycled through and been able to build to the binaries for this version. I'll send an email when it is okay to merge to `master` again. Thanks, Cory -- Cory Quammen Staff R&D Engineer Kitware, Inc. From sur.chiranjib at gmail.com Thu Feb 23 09:38:23 2017 From: sur.chiranjib at gmail.com (Chiranjib Sur) Date: Thu, 23 Feb 2017 20:08:23 +0530 Subject: [Paraview-developers] hdf5 using vtk6 Message-ID: Hi, I was wondering how HDF5 data can be handled in VTK6. With google, I could not find any recent updates on HDF5 support for VTK6. Can anyone point me towards the APIs / Classes which I can see and learn a bit more. Currently, I use "vtkPolydata" for my simulation and while I am thinking about scaling, HDF5 came into my mind. Any pointers will be very much appreciated. Thanks in advance, Chiranjib -------------- next part -------------- An HTML attachment was scrubbed... URL: From cory.quammen at kitware.com Thu Feb 23 09:55:10 2017 From: cory.quammen at kitware.com (Cory Quammen) Date: Thu, 23 Feb 2017 09:55:10 -0500 Subject: [Paraview-developers] ParaView 5.3.0-RC2 tagged In-Reply-To: References: Message-ID: All the binaries for 5.3.0-RC2 have been built. Please feel free to resume merging to master. Best, Cory On Wed, Feb 22, 2017 at 10:48 PM, Cory Quammen wrote: > Folks, > > ParaView v5.3.0-RC2 has been tagged. Please do not merge anything into > `master` until the dashboards have cycled through and been able to > build to the binaries for this version. > > I'll send an email when it is okay to merge to `master` again. > > Thanks, > Cory > > -- > Cory Quammen > Staff R&D Engineer > Kitware, Inc. -- Cory Quammen Staff R&D Engineer Kitware, Inc. From cory.quammen at kitware.com Thu Feb 23 14:27:29 2017 From: cory.quammen at kitware.com (Cory Quammen) Date: Thu, 23 Feb 2017 14:27:29 -0500 Subject: [Paraview-developers] ParaView 5.3.0 Release Candidate 2 binaries are available for download Message-ID: Folks, I am pleased to announce that binaries and source code zip files and tar balls for ParaView 5.3.0 Release Candidate 2 are now available for download from http://www.paraview.org/download/ Please let us know if you run into any problems with this release candidate. The ParaView issue tracker is located at https://gitlab.kitware.com/paraview/paraview/issues Sincerely, Cory -- Cory Quammen Staff R&D Engineer Kitware, Inc. From orion at cora.nwra.com Fri Feb 24 14:15:27 2017 From: orion at cora.nwra.com (Orion Poplawski) Date: Fri, 24 Feb 2017 12:15:27 -0700 Subject: [Paraview-developers] ParaView 5.3.0 Release Candidate 2 binaries are available for download In-Reply-To: References: Message-ID: On 02/23/2017 12:27 PM, Cory Quammen wrote: > Folks, > > I am pleased to announce that binaries and source code zip files and > tar balls for ParaView 5.3.0 Release Candidate 2 are now available for > download from > > http://www.paraview.org/download/ > > Please let us know if you run into any problems with this release > candidate. The ParaView issue tracker is located at > > https://gitlab.kitware.com/paraview/paraview/issues > > Sincerely, > Cory > Fedora builds failing for me: -- Installing: /builddir/build/BUILDROOT/paraview-5.3.0-0.1.RC2.fc26.x86_64/usr/lib64/openmpi/share/doc/paraview-5.3/doxygen/doc_readme.txt CMake Error at VTK/Utilities/Doxygen/cmake_install.cmake:65 (file): file INSTALL cannot find "/builddir/build/BUILD/ParaView-v5.3.0-RC2/x86_64-redhat-linux-gnu-openmpi/VTK/Utilities/Doxygen/doc/html". Call Stack (most recent call first): VTK/cmake_install.cmake:278 (include) cmake_install.cmake:117 (include) i don't see any differences in the cmake config output from rc1 that would suggest a problem. -- Orion Poplawski Technical Manager 720-772-5637 NWRA, Boulder/CoRA Office FAX: 303-415-9702 3380 Mitchell Lane orion at nwra.com Boulder, CO 80301 http://www.nwra.com From ben.boeckel at kitware.com Fri Feb 24 15:20:44 2017 From: ben.boeckel at kitware.com (Ben Boeckel) Date: Fri, 24 Feb 2017 15:20:44 -0500 Subject: [Paraview-developers] ParaView 5.3.0 Release Candidate 2 binaries are available for download In-Reply-To: References: Message-ID: <20170224202044.GA12651@megas.kitware.com> On Fri, Feb 24, 2017 at 12:15:27 -0700, Orion Poplawski wrote: > -- Installing: > /builddir/build/BUILDROOT/paraview-5.3.0-0.1.RC2.fc26.x86_64/usr/lib64/openmpi/share/doc/paraview-5.3/doxygen/doc_readme.txt > CMake Error at VTK/Utilities/Doxygen/cmake_install.cmake:65 (file): > file INSTALL cannot find > > "/builddir/build/BUILD/ParaView-v5.3.0-RC2/x86_64-redhat-linux-gnu-openmpi/VTK/Utilities/Doxygen/doc/html". > Call Stack (most recent call first): > VTK/cmake_install.cmake:278 (include) > cmake_install.cmake:117 (include) > > i don't see any differences in the cmake config output from rc1 that would > suggest a problem. Hmm, is the documentation enabled in the Fedora build? Maybe the install rule needs guarded more? This changed in this MR: https://gitlab.kitware.com/vtk/vtk/merge_requests/2107 --Ben From orion at cora.nwra.com Fri Feb 24 15:23:00 2017 From: orion at cora.nwra.com (Orion Poplawski) Date: Fri, 24 Feb 2017 13:23:00 -0700 Subject: [Paraview-developers] ParaView 5.3.0 Release Candidate 2 binaries are available for download In-Reply-To: <20170224202044.GA12651@megas.kitware.com> References: <20170224202044.GA12651@megas.kitware.com> Message-ID: <7752149c-5a47-4938-e556-d3328e9dbcb9@cora.nwra.com> On 02/24/2017 01:20 PM, Ben Boeckel wrote: > On Fri, Feb 24, 2017 at 12:15:27 -0700, Orion Poplawski wrote: >> -- Installing: >> /builddir/build/BUILDROOT/paraview-5.3.0-0.1.RC2.fc26.x86_64/usr/lib64/openmpi/share/doc/paraview-5.3/doxygen/doc_readme.txt >> CMake Error at VTK/Utilities/Doxygen/cmake_install.cmake:65 (file): >> file INSTALL cannot find >> >> "/builddir/build/BUILD/ParaView-v5.3.0-RC2/x86_64-redhat-linux-gnu-openmpi/VTK/Utilities/Doxygen/doc/html". >> Call Stack (most recent call first): >> VTK/cmake_install.cmake:278 (include) >> cmake_install.cmake:117 (include) >> >> i don't see any differences in the cmake config output from rc1 that would >> suggest a problem. > > Hmm, is the documentation enabled in the Fedora build? Maybe the install > rule needs guarded more? > > This changed in this MR: > > https://gitlab.kitware.com/vtk/vtk/merge_requests/2107 > > --Ben > Yes, it is. -DBUILD_DOCUMENTATION:BOOL=ON \\\ -DBUILD_EXAMPLES:BOOL=ON \\\ -DBUILD_TESTING:BOOL=OFF \\\ -- Orion Poplawski Technical Manager 720-772-5637 NWRA, Boulder/CoRA Office FAX: 303-415-9702 3380 Mitchell Lane orion at nwra.com Boulder, CO 80301 http://www.nwra.com From ben.boeckel at kitware.com Fri Feb 24 15:39:56 2017 From: ben.boeckel at kitware.com (Ben Boeckel) Date: Fri, 24 Feb 2017 15:39:56 -0500 Subject: [Paraview-developers] ParaView 5.3.0 Release Candidate 2 binaries are available for download In-Reply-To: <7752149c-5a47-4938-e556-d3328e9dbcb9@cora.nwra.com> References: <20170224202044.GA12651@megas.kitware.com> <7752149c-5a47-4938-e556-d3328e9dbcb9@cora.nwra.com> Message-ID: <20170224203956.GA30571@megas.kitware.com> On Fri, Feb 24, 2017 at 13:23:00 -0700, Orion Poplawski wrote: > Yes, it is. > > -DBUILD_DOCUMENTATION:BOOL=ON \\\ > -DBUILD_EXAMPLES:BOOL=ON \\\ > -DBUILD_TESTING:BOOL=OFF \\\ Oh, it has to do with VTK being inside ParaView. The paths are messed up it seems in this case. Looking into it. --Ben From ben.boeckel at kitware.com Fri Feb 24 15:49:58 2017 From: ben.boeckel at kitware.com (Ben Boeckel) Date: Fri, 24 Feb 2017 15:49:58 -0500 Subject: [Paraview-developers] ParaView 5.3.0 Release Candidate 2 binaries are available for download In-Reply-To: <20170224203956.GA30571@megas.kitware.com> References: <20170224202044.GA12651@megas.kitware.com> <7752149c-5a47-4938-e556-d3328e9dbcb9@cora.nwra.com> <20170224203956.GA30571@megas.kitware.com> Message-ID: <20170224204958.GA30924@megas.kitware.com> On Fri, Feb 24, 2017 at 15:39:56 -0500, Ben Boeckel wrote: > Oh, it has to do with VTK being inside ParaView. The paths are messed up > it seems in this case. Looking into it. Ah, it isn't that, but that VTK's documentation isn't built by default, similar to the `ParaViewDoxygenDoc` target, `DoxygenDoc` needs to be built manually. --Ben From amitprabhakar05 at gmail.com Sat Feb 25 23:29:40 2017 From: amitprabhakar05 at gmail.com (Amit Prabhakar) Date: Sun, 26 Feb 2017 09:59:40 +0530 Subject: [Paraview-developers] Strange Problem with vtkKdTreePointLocator In-Reply-To: <16F103E9-1879-49F0-9909-22CE29ED7445@gmail.com> References: <16F103E9-1879-49F0-9909-22CE29ED7445@gmail.com> Message-ID: Hi Utkarsh, Thanks for your suggestion. I used vtkOctreeIncrementalPointLocator class and it worked fine. It also helped me in managing the duplicate points inside a vtkPolydata. Any idea how a vtkCellArray class can filter the duplicate cells? Thanks again, On Feb 1, 2017, at 23:18, Amit Prabhakar wrote: Hello All! I am facing a strange problem with vtkKdTreePointLocator class that says: *ERROR : In /path/to/VTK-build/Common/DataModel/vtkLocator.cxx line 49* *vtkPointLocator (0xf132d0): Input Not set* I am setting the vtkKdtreePointLocator using a polydata. The poly data get 2-3 points and a cell added to it, in a for loop. After every loop operation, we update the poly data, the kdtreelocator and BuildLocator(). *vtkKdTreePontLocator *kdt = vtkKdTreePointLocator::New();* *kdt->SetDataSet(polydata_new);* *for(int i=0;i<1000;i++)* *{* * ?. //the operations to add a few points and a cell to polydata_new * * * * kdt->SetDataSet(polydata_new);* * kdt->BuildLocator();* * kdt->Update();* *}* This seems like a simple operation, but am not able to figure out why this happens. Your help can put my brains straight. Thanks in advance! -------------- next part -------------- An HTML attachment was scrubbed... URL: From mathieu.westphal at kitware.com Tue Feb 28 05:38:44 2017 From: mathieu.westphal at kitware.com (Mathieu Westphal) Date: Tue, 28 Feb 2017 11:38:44 +0100 Subject: [Paraview-developers] ParaView 5.3.0 Release Candidate 2 binaries are available for download In-Reply-To: <20170224204958.GA30924@megas.kitware.com> References: <20170224202044.GA12651@megas.kitware.com> <7752149c-5a47-4938-e556-d3328e9dbcb9@cora.nwra.com> <20170224203956.GA30571@megas.kitware.com> <20170224204958.GA30924@megas.kitware.com> Message-ID: FYI, I have another user with the same issue. Mathieu Westphal On Fri, Feb 24, 2017 at 9:49 PM, Ben Boeckel wrote: > On Fri, Feb 24, 2017 at 15:39:56 -0500, Ben Boeckel wrote: > > Oh, it has to do with VTK being inside ParaView. The paths are messed up > > it seems in this case. Looking into it. > > Ah, it isn't that, but that VTK's documentation isn't built by default, > similar to the `ParaViewDoxygenDoc` target, `DoxygenDoc` needs to be > built manually. > > --Ben > _______________________________________________ > 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= > Paraview-developers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/paraview-developers > -------------- next part -------------- An HTML attachment was scrubbed... URL: From ben.boeckel at kitware.com Tue Feb 28 08:42:08 2017 From: ben.boeckel at kitware.com (Ben Boeckel) Date: Tue, 28 Feb 2017 08:42:08 -0500 Subject: [Paraview-developers] ParaView 5.3.0 Release Candidate 2 binaries are available for download In-Reply-To: References: <20170224202044.GA12651@megas.kitware.com> <7752149c-5a47-4938-e556-d3328e9dbcb9@cora.nwra.com> <20170224203956.GA30571@megas.kitware.com> <20170224204958.GA30924@megas.kitware.com> Message-ID: <20170228134208.GA22906@megas.kitware.com> On Tue, Feb 28, 2017 at 11:38:44 +0100, Mathieu Westphal wrote: > FYI, I have another user with the same issue. The `EXCLUDE_FROM_ALL` flag can be added to the `install()` command, but this means that users who previously got the documentation are now going to need to specifically specify that they want the documentation installed (because ParaView has this same root problem), so I don't know that it is a better solution. The current solution is that if you have documentation enabled, the DoxygenDoc target must be built as well before installation will work (same as ParaViewDoxygenDoc has been since its beginning AFAICT). --Ben From joachim.pouderoux at kitware.com Tue Feb 28 11:56:28 2017 From: joachim.pouderoux at kitware.com (Joachim Pouderoux) Date: Tue, 28 Feb 2017 12:56:28 -0400 Subject: [Paraview-developers] Strange Problem with vtkKdTreePointLocator In-Reply-To: References: <16F103E9-1879-49F0-9909-22CE29ED7445@gmail.com> Message-ID: Hi Amit, Not simple answer, but for instance you might compute some kind of hash using cell->sorted_point_ids connectivity (eg. rearrange faces in such a way that the first id is the lowest one) and create a map with hash->cell_id. Then rebuild your cell array from those unique cells. Best, *Joachim Pouderoux*, PhD *Technical Expert - Scientific Computing Team* *Kitware SAS * 2017-02-26 0:29 GMT-04:00 Amit Prabhakar : > Hi Utkarsh, > > Thanks for your suggestion. I used vtkOctreeIncrementalPointLocator class > and it worked fine. It also helped me in managing the duplicate points > inside a vtkPolydata. > > > Any idea how a vtkCellArray class can filter the duplicate cells? > > Thanks again, > > On Feb 1, 2017, at 23:18, Amit Prabhakar > wrote: > > Hello All! > > > I am facing a strange problem with vtkKdTreePointLocator class that says: > > *ERROR : In /path/to/VTK-build/Common/DataModel/vtkLocator.cxx line 49* > *vtkPointLocator (0xf132d0): Input Not set* > > > I am setting the vtkKdtreePointLocator using a polydata. The poly data get > 2-3 points and a cell added to it, in a for loop. After every loop > operation, we update the poly data, the kdtreelocator and BuildLocator(). > > *vtkKdTreePontLocator *kdt = vtkKdTreePointLocator::New();* > *kdt->SetDataSet(polydata_new);* > > *for(int i=0;i<1000;i++)* > *{* > * ?. //the operations to add a few points and a cell to polydata_new * > * point. Do some point insertion to polydata_new>* > > * kdt->SetDataSet(polydata_new);* > * kdt->BuildLocator();* > * kdt->Update();* > > > *}* > > > This seems like a simple operation, but am not able to figure out why this > happens. Your help can put my brains straight. > > Thanks in advance! > > > > _______________________________________________ > 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= > Paraview-developers > > Follow this link to subscribe/unsubscribe: > http://public.kitware.com/mailman/listinfo/paraview-developers > > -------------- next part -------------- An HTML attachment was scrubbed... URL: