[Paraview] ParaView 5.0.0-RC1 is missing PointSprite Rendering Plugin

2015-11-18 Thread Christian Richter
PV 4.2.0 that the Radius and Opacity Editor does not respect the selected "Scale by" data-array for the scalar range (it did until 4.1.0) so the user needs to set it by hand which is really annoying when one needs to scale by radius. http://www.paraview.org/Bug/view.php?id=15017 Best,

Re: [Paraview] File in pipeline browser has changed; best way to reload

2015-05-05 Thread Christian Richter
/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 -- Dipl.-Ing. Christian

Re: [Paraview] ANN: ParaView 4.0.0-RC2 now available for download

2013-05-30 Thread Christian Richter
Me too ! Am 30.05.2013 19:57, schrieb Burlen Loring: I also sorely miss easy access to the camera undo On 05/30/2013 05:02 AM, Utkarsh Ayachit wrote: That is intentional. When the moving of selection buttons to the view-toolbar, there are now too many buttons. It isn't clear how often these

Re: [Paraview] reading binary 3d point data

2013-01-13 Thread Christian Richter
Hi Adam, I don't think Paraview has a native reader für xyz binary files. I made a reader for the famous LAMMPS binary dump-file format (header + rows containing x,y,z + special information like forces, mass and radius). You can get the sourcecode here:

Re: [Paraview] Extremely wide properties pane

2013-01-05 Thread Christian Richter
This seems to be related to the PointSprite Plugin (the radius transfer function is mapped to a lot of inputfileds) At the moment a work-a-round is to use paraview --use-old-panels when starting Paraview. I would like to know what happend to the good old edit radius tranfer function window.

Re: [Paraview] How to change the Representation within a Plugin ?

2013-01-02 Thread Christian Richter
RequestData() will get called and then the rest should work as expected. Utkarsh On Tue, Jan 1, 2013 at 5:50 AM, Christian Richter christian.rich...@ovgu.de wrote: Hi, I've written a Plugin to use Paraview as LiveView for our simulation Data. With a QFileSystemWatcher the Plugin updates the filenames

Re: [Paraview] ParticlePathLines Filter

2013-01-01 Thread Christian Richter
source dir, and run git apply add-particle-path.diff ). Note that, to differentiate from the new stuff, I have changed the filter name from Particle Pathlines -- Temporal Particles To Pathlines. thanks, Leo On Thu, Dec 6, 2012 at 12:12 PM, Christian Richter christian.rich...@ovgu.de wrote

[Paraview] How to change the Representation within a Plugin ?

2013-01-01 Thread Christian Richter
Hi, I've written a Plugin to use Paraview as LiveView for our simulation Data. With a QFileSystemWatcher the Plugin updates the filenames of the fileseries-reader everytime a new result-file was written to disk. Now I want to change the Representation from Point to Point Sprite

Re: [Paraview] Using VR-Style input devices, analog input from 3Dconnexion device

2012-12-20 Thread Christian Richter
, schrieb Aashish Chaudhary: Hi Christian, Are you still interested? if yes, let me know and I can provide you more help. Thanks, On Tue, Nov 6, 2012 at 11:34 AM, Christian Richter christian.rich...@ovgu.de mailto:christian.rich...@ovgu.de wrote: ell me how to write a styl -- | Aashish

Re: [Paraview] Using VR-Style input devices, analog input from 3Dconnexion device

2012-12-20 Thread Christian Richter
Hi Cory, thats awesome, thank you so much for sharing this. I would suggest the following change in HandleAnalog to support parallel-projection deph-scaling because moving in Z-Direction has no effect: int mode = camera-GetParallelProjection(); if (mode) { //in case of parallel

[Paraview] ParticlePathLines Filter

2012-12-01 Thread Christian Richter
Hello, in Paraview 3.98 the ParticlePathLines Filter is gone away. We use this to show the trajectory of simple particle data (x,y,z), based on ID. Is this intended ? I got it back by copy paste the proxysource from filter.xml in 3.14 (line 6679++) to 3.98. Would it be possible to add back

Re: [Paraview] Using VR-Style input devices

2012-11-13 Thread Christian Richter
Hi Aashish, I'm very interested in getting this to work, please point me to the right place in the code. Do you know why the Paraview-own VTK does not support Tdx and does not use it ? (the option is there in the cmake but than something is missing, because it does not ask for

Re: [Paraview] Sum values of scalar vector

2012-11-03 Thread Christian Richter
Hi, in a programmable Filter do something like this: import math input = self.GetInputDataObject(0, 0) output = self.GetOutputDataObject(0) COUNT=input.GetNumberOfPoints() pd=input.GetPointData() m=0 v=0 for i in xrange(COUNT): r=pd.GetArray('radius').GetValue(i)

Re: [Paraview] PV3.14.1 Crash

2012-10-24 Thread Christian Richter
Hi, 1) is a known bug in the release of 3.14.X : http://review.source.kitware.com/#/c/5242/ you can compile PV from source using the latest git or replace vtk/IO/vtkSTLReader.cxx with that one from the bugreport. or only use binary-stl files. 2) I've the same issue when I copy PV from one

Re: [Paraview] Scripting Common UI Tasks for Opening Files

2012-10-22 Thread Christian Richter
Hi for time-series data I'm using the attached script. First it looks in the 'post'-folder and sort the files by number naturally. After that it gives the sorted array to the readerclass (change this for your reader as in the traced macro you got from the macro tool) Then the

Re: [Paraview] time series not working with xyz or lammps-dump reader presenting millions of atoms by spheres

2012-07-06 Thread Christian Richter
/ParaView Follow this link to subscribe/unsubscribe: http://www.paraview.org/mailman/listinfo/paraview Dipl.-Ing. Christian Richter Lehrstuhl für Materialflusstechnik Institut für Logistik und Materialflusstechnik (ILM) Fakultät für Maschinenbau (FMB) Otto-von-Guericke-Universität Magdeburg

Re: [Paraview] particle tracking

2012-02-21 Thread Christian Richter
http://www.paraview.org/mailman/listinfo/paraview -- Dipl.-Ing. Christian Richter Lehrstuhl fr Materialflusstechnik Institut fr Logistik und Materialflusstechnik (ILM) Fakultt fr Maschinenbau (FMB)

[Paraview] How to calc the mass-flow-rate of a pointset

2012-01-16 Thread Christian Richter
Hello all, I want to calc the mass-flow rate of a Pointset containing the positions and velocities. I read the HowTo's google showed me, but they all uses vector fields. Is there a filter to calculate the mass-flow rate of moving particles ? I tried calculator[coords z] - Integrate

[Paraview] Update Button Work-a-round

2011-11-10 Thread Christian Richter
Hello All, Because there is no Update Button available in Paraview I made a little Py-script to reload the filenames in FileSeriesReader for my own reader class (should work with other reader classes too). Now, everytime I hit the button, the new FileNameList is updatet, and the last

[Paraview] Reader Plugin should inherit from which class ?

2011-11-09 Thread Christian Richter
Dear List, I've written a Plugin to read custom text files. I'm using vtkPolyDataAlgorithm as Master-Class. The code compiles fine and my Plugin is working in Paraview 3.12. But if the plugin is active, it's not possible to open legecy VTK files, because everytime my own reader class is used.