[Paraview] Paraview Programmable Source 3D Text

2013-09-25 Thread Willi Karel
I'd like to insert various text strings programmatically into the scene at various 3D locations in world coordinates. To me, (Python) Programmable Source seems to be the appropriate tool for that purpose (which I successfully use to insert geometries into the scene). Is that possible using

Re: [Paraview] Paraview Programmable Source 3D Text

2013-09-25 Thread Utkarsh Ayachit
Willi, You can still use the programmable source for 3D text. With vtkPolyData as the chosen Output DataSet Type, you can use the attached script as the Script. On Wed, Sep 25, 2013 at 6:11 AM, Willi Karel w...@ipf.tuwien.ac.at wrote: I'd like to insert various text strings

[Paraview] recommendations to enable additional VTK modules for plugin

2013-09-25 Thread Casey Goodlett
Hi all, I am working on a plugin and would like to enable an additional VTK module that is not normally built by paraview (specifically vtklibproj4). To enable this I did four things 1) Enable Module_vtklibproj4 when building paraview To my plugin CMakeLists I did the following 2) Add

Re: [Paraview] recommendations to enable additional VTK modules for plugin

2013-09-25 Thread Utkarsh Ayachit
Pretty much, esp since libproj is a third party module that isn't wrapped. For other wrapped vtk modules, enabling the module in ParaView will make it seem like it's just another ParaView module and you wouldn't need to do the vtk_module_load(..) etc, althogh, wouldn't hurt if you did. On Wed,

Re: [Paraview] Delaunay 3D filter too slow

2013-09-25 Thread Moreland, Kenneth
That is strange. I cannot replicate your problem. I used a point source to create 16020 random points in a sphere, and the Delaunay triangulation took only about 2 seconds. My processor might be a bit better than yours, but not anywhere near enough to explain the difference. What version of

[Paraview] quadratic elements (hex20 and tetra10)

2013-09-25 Thread Hsieh, Kuo T
Currently I am using paraview version 3.98.1 on window environment and use ensight gold format for import data. It seems to me that the paraview doesn't support quadratic elements nor tetrahedral elements. Is it true? Thanks, Kuota ___ Powered by

Re: [Paraview] Paraview Programmable Source 3D Text

2013-09-25 Thread Willi Karel
Dear Utkarsh, that works nice, thanks a lot! Willi. On 25.09.2013 15:25, Utkarsh Ayachit wrote: Willi, You can still use the programmable source for 3D text. With vtkPolyData as the chosen Output DataSet Type, you can use the attached script as the Script. On Wed, Sep 25,

[Paraview] My own filter as part of pipeline for coprocessing raises name not defined error

2013-09-25 Thread Hong Yi
Hello, I set up a pipeline that used a custom filter I developed and exported it as a python script for coprocessing. I have made sure the static library for my custom filter is built and available in paraview-build/lib directory, and I have also linked this custom filter static library along

Re: [Paraview] How to indicate the pressure data in paraview ( I use LS-DYNA)

2013-09-25 Thread Yusuke
Samuel Key samuelkey at bresnan.net writes: Yusuke-san, If the components of the stress tensor supplied by the LS-DYNS d3plot file have the following names: Sigma_XX, Sigma_XY, Sigma_XZ, Sigma_YY, ... then one can use the Calculator filter with the formula

Re: [Paraview] My own filter as part of pipeline for coprocessing raises name not defined error

2013-09-25 Thread Andy Bauer
Did you use a plugin to add in your custom filter when creating the Python co-processing script? I'm not sure how plugins are loaded for static builds but you may want to look at http://www.paraview.org/Wiki/ParaView/Plugin_HowTo#Plugins_in_Static_Applications. If that doesn't work, we'll have to