Re: [Paraview] how useful has been UserVoice

2009-11-29 Thread Berk Geveci
I would not consider it a failure. There is still regular (although
not a lot) activity and we plan to pick the top ideas and implement
them. I believe that it is still the best way for us to get feedback.

Best,
-berk

On Wed, Nov 25, 2009 at 7:32 AM, Ricardo Reis  wrote:
>
>  I don't see many new things there and no news/feedback for most of the top
> ranking requests. So was the experiment a failure, as been discarded or am I
> being just impatient?
>
>  best,
>
>  Ricardo Reis
>
>  'Non Serviam'
>
>  PhD candidate @ Lasef
>  Computational Fluid Dynamics, High Performance Computing, Turbulence
>  http://www.lasef.ist.utl.pt
>
>  Cultural Instigator @ Rádio Zero
>  http://www.radiozero.pt
>
>  Keep them Flying! Ajude a/help Aero Fénix!
>
>  http://www.aeronauta.com/aero.fenix
>
>  http://www.flickr.com/photos/rreis/
> ___
> 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
>
> Follow this link to subscribe/unsubscribe:
> http://www.paraview.org/mailman/listinfo/paraview
>
>
___
Powered by www.kitware.com

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

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

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] Building plugin with sources in different directory

2009-11-29 Thread Jérôme
Yes, I think this is the cause. Your MyFilter/CMakeLists should define the
project and different variables such as the include folders. You asked me
out-of-list for my usual configurations: You may want to take a look at
http://github.com/jeromevelut/Chiron
This is a work-in-progress Medical Imaging Paraview plugin. Checkout the
Chiron-PoC branch (proof-of-concept). The structure will not change. In your
case, your root folder looks like my ./Modules/ folder and your ./plugin is
the same as my ./Plugins

HTH,
Jerome

2009/11/29 pat marion 

> Do you need to include_directories(../) ?
>
> Pat
>
>
> On Sun, Nov 29, 2009 at 12:08 PM, David Doria wrote:
>
>> On Sun, Nov 29, 2009 at 11:48 AM, Dave Partyka 
>> wrote:
>> > Is there a MyPlugin.h file and is it in the same directory as the .cxx?
>> If I
>> > recall correctly the ADD_PARAVIEW_PLUGIN sets up client/server wrappings
>> and
>> > makes an assumption that each source file you give it has a header file.
>>
>> There is indeed a MyPlugin.h that is in the same directory as
>> MyPlugin.cxx. What I think the problem is though is the CMakeLists.txt
>> is not in the same directory as those source files.
>>
>> The setup is like this
>> /MyFilter/MyFilter.cxx
>> /MyFilter/MyFilter.h
>> /MyFilter/CMakeLists.txt
>> /MyFilter/plugin/MyFilter.xml
>> /MyFilter/plugin/CMakeLists.txt
>>
>> The MyFilter CMakeLists SUBDIRS the plugin directory. The
>> plugin/CMakeLists.txt has
>>
>> ADD_PARAVIEW_PLUGIN(MyFilter "1.0"
>>  SERVER_MANAGER_XML MyFilter.xml
>> SERVER_MANAGER_SOURCES ../MyFilter.cxx
>> )
>>
>> I think the problem is that it is looking in /MyFilter/plugin for
>> the .h file. Am I misunderstanding? Is there a way to tell it where to
>> look (in this case, ../)?
>>
>> Thanks,
>>
>> David
>> ___
>> 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
>>
>> Follow this link to subscribe/unsubscribe:
>> http://www.paraview.org/mailman/listinfo/paraview
>>
>
>
> ___
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at
> http://www.kitware.com/opensource/opensource.html
>
> Please keep messages on-topic and check the ParaView Wiki at:
> http://paraview.org/Wiki/ParaView
>
> Follow this link to subscribe/unsubscribe:
> http://www.paraview.org/mailman/listinfo/paraview
>
>
___
Powered by www.kitware.com

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

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

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] Building plugin with sources in different directory

2009-11-29 Thread pat marion
Do you need to include_directories(../) ?

Pat

On Sun, Nov 29, 2009 at 12:08 PM, David Doria  wrote:

> On Sun, Nov 29, 2009 at 11:48 AM, Dave Partyka 
> wrote:
> > Is there a MyPlugin.h file and is it in the same directory as the .cxx?
> If I
> > recall correctly the ADD_PARAVIEW_PLUGIN sets up client/server wrappings
> and
> > makes an assumption that each source file you give it has a header file.
>
> There is indeed a MyPlugin.h that is in the same directory as
> MyPlugin.cxx. What I think the problem is though is the CMakeLists.txt
> is not in the same directory as those source files.
>
> The setup is like this
> /MyFilter/MyFilter.cxx
> /MyFilter/MyFilter.h
> /MyFilter/CMakeLists.txt
> /MyFilter/plugin/MyFilter.xml
> /MyFilter/plugin/CMakeLists.txt
>
> The MyFilter CMakeLists SUBDIRS the plugin directory. The
> plugin/CMakeLists.txt has
>
> ADD_PARAVIEW_PLUGIN(MyFilter "1.0"
>  SERVER_MANAGER_XML MyFilter.xml
> SERVER_MANAGER_SOURCES ../MyFilter.cxx
> )
>
> I think the problem is that it is looking in /MyFilter/plugin for
> the .h file. Am I misunderstanding? Is there a way to tell it where to
> look (in this case, ../)?
>
> Thanks,
>
> David
> ___
> 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
>
> Follow this link to subscribe/unsubscribe:
> http://www.paraview.org/mailman/listinfo/paraview
>
___
Powered by www.kitware.com

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

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

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] Building plugin with sources in different directory

2009-11-29 Thread David Doria
On Sun, Nov 29, 2009 at 11:48 AM, Dave Partyka  wrote:
> Is there a MyPlugin.h file and is it in the same directory as the .cxx? If I
> recall correctly the ADD_PARAVIEW_PLUGIN sets up client/server wrappings and
> makes an assumption that each source file you give it has a header file.

There is indeed a MyPlugin.h that is in the same directory as
MyPlugin.cxx. What I think the problem is though is the CMakeLists.txt
is not in the same directory as those source files.

The setup is like this
/MyFilter/MyFilter.cxx
/MyFilter/MyFilter.h
/MyFilter/CMakeLists.txt
/MyFilter/plugin/MyFilter.xml
/MyFilter/plugin/CMakeLists.txt

The MyFilter CMakeLists SUBDIRS the plugin directory. The
plugin/CMakeLists.txt has

ADD_PARAVIEW_PLUGIN(MyFilter "1.0"
  SERVER_MANAGER_XML MyFilter.xml
SERVER_MANAGER_SOURCES ../MyFilter.cxx
)

I think the problem is that it is looking in /MyFilter/plugin for
the .h file. Am I misunderstanding? Is there a way to tell it where to
look (in this case, ../)?

Thanks,

David
___
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

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] Building plugin with sources in different directory

2009-11-29 Thread Dave Partyka
Is there a MyPlugin.h file and is it in the same directory as the .cxx? If I
recall correctly the ADD_PARAVIEW_PLUGIN sets up client/server wrappings and
makes an assumption that each source file you give it has a header file.

On Sun, Nov 29, 2009 at 11:20 AM, David Doria  wrote:

> If I have my cxx and h files for my filter in /MyFilter
>
> then in /MyFilter/plugin I have the MyFilter.xml. I also have a
> CMakeLists.txt containing
>
> ADD_PARAVIEW_PLUGIN(MyPlugin "1.0"
>  SERVER_MANAGER_XML MyPlugin.xml
> SERVER_MANAGER_SOURCES ../MyPlugin.cxx
> )
>
> You'll notice the ../MyPlugin.cxx because the filter sources are not
> in the plugin directory.
>
> When I try to build I get an error:
> MyFilterClientServer.cxx error: MyFilter.h: No such file or directory
>
> I'm assuming this is because it is looking in the current directory.
> Is there a way to specify where the sources reside?
>
> Thanks,
>
> David
> ___
> 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
>
> Follow this link to subscribe/unsubscribe:
> http://www.paraview.org/mailman/listinfo/paraview
>
___
Powered by www.kitware.com

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

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

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


[Paraview] Building plugin with sources in different directory

2009-11-29 Thread David Doria
If I have my cxx and h files for my filter in /MyFilter

then in /MyFilter/plugin I have the MyFilter.xml. I also have a
CMakeLists.txt containing

ADD_PARAVIEW_PLUGIN(MyPlugin "1.0"
  SERVER_MANAGER_XML MyPlugin.xml
SERVER_MANAGER_SOURCES ../MyPlugin.cxx
)

You'll notice the ../MyPlugin.cxx because the filter sources are not
in the plugin directory.

When I try to build I get an error:
MyFilterClientServer.cxx error: MyFilter.h: No such file or directory

I'm assuming this is because it is looking in the current directory.
Is there a way to specify where the sources reside?

Thanks,

David
___
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

Follow this link to subscribe/unsubscribe:
http://www.paraview.org/mailman/listinfo/paraview


Re: [Paraview] Problem with the visualization of vector data

2009-11-29 Thread Hom Nath Gharti
If you remove "LOOKUP_TABLE default" that should work fine.

On Sat, Nov 28, 2009 at 11:24 PM, Amir Wallrabenstein  wrote:
> Hello,
> I got a problem with the following data file in the vtk legacy format.
> When I try to load it into paraview _I get the error message:
>
> Generic Warning: In 
> /home/kitware/ParaView-3.6/ParaView3/VTK/IO/vtkDataReader.cxx, line 1382
> Error reading ascii data. Possible mismatch of datasize with declaration.
>
> There seems to be a problem with the data ranges of the vector data because 
> in the information tab they are given as [0, 7.23169e-308], [0, 
> 8.45559e-308], [0, 6.91926e-308], but I can' really see the problem.
>
> Any help is appreciated.
>
> # vtk DataFile Version 2.0
> Field
> ASCII
> DATASET STRUCTURED_GRID
> DIMENSIONS 3 6 3
> POINTS 54 float
> 1.00 0.00 1.00
> 2.00 0.00 1.00
> 3.00 0.00 1.00
> 0.972370 0.233445 1.00
> 1.944740 0.466891 1.00
> 2.917110 0.700336 1.00
> 0.891007 0.453990 1.00
> 1.782013 0.907981 1.00
> 2.673020 1.361971 1.00
> 0.760406 0.649448 1.00
> 1.520812 1.298896 1.00
> 2.281218 1.948344 1.00
> 0.587785 0.809017 1.00
> 1.175571 1.618034 1.00
> 1.763356 2.427051 1.00
> 0.382683 0.923880 1.00
> 0.765367 1.847759 1.00
> 1.148050 2.771639 1.00
> 1.00 0.00 2.00
> 2.00 0.00 2.00
> 3.00 0.00 2.00
> 0.972370 0.233445 2.00
> 1.944740 0.466891 2.00
> 2.917110 0.700336 2.00
> 0.891007 0.453990 2.00
> 1.782013 0.907981 2.00
> 2.673020 1.361971 2.00
> 0.760406 0.649448 2.00
> 1.520812 1.298896 2.00
> 2.281218 1.948344 2.00
> 0.587785 0.809017 2.00
> 1.175571 1.618034 2.00
> 1.763356 2.427051 2.00
> 0.382683 0.923880 2.00
> 0.765367 1.847759 2.00
> 1.148050 2.771639 2.00
> 1.00 0.00 3.00
> 2.00 0.00 3.00
> 3.00 0.00 3.00
> 0.972370 0.233445 3.00
> 1.944740 0.466891 3.00
> 2.917110 0.700336 3.00
> 0.891007 0.453990 3.00
> 1.782013 0.907981 3.00
> 2.673020 1.361971 3.00
> 0.760406 0.649448 3.00
> 1.520812 1.298896 3.00
> 2.281218 1.948344 3.00
> 0.587785 0.809017 3.00
> 1.175571 1.618034 3.00
> 1.763356 2.427051 3.00
> 0.382683 0.923880 3.00
> 0.765367 1.847759 3.00
> 1.148050 2.771639 3.00
> POINT_DATA 54
> VECTORS vectors double
> LOOKUP_TABLE default
> -1.378324e-01 1.415485e-01 -2.232868e-02
> -3.356978e-01 -2.673025e-01 -1.943081e-01
> -1.363012e-01 6.930675e-01 6.872884e-02
> -2.456192e-01 4.948993e-02 -4.342347e-02
> -5.982178e-01 -4.915158e-01 -3.778787e-01
> -2.428905e-01 6.020317e-01 1.336597e-01
> -2.998641e-01 -8.146902e-02 -6.211867e-02
> -7.303342e-01 -8.104729e-01 -5.405677e-01
> -2.965328e-01 4.725276e-01 1.912045e-01
> -2.887426e-01 -2.227810e-01 -7.738119e-02
> -7.032472e-01 -1.154645e+00 -6.733849e-01
> -2.855349e-01 3.327855e-01 2.381834e-01
> -2.146790e-01 -3.436419e-01 -8.836760e-02
> -5.228616e-01 -1.449008e+00 -7.689906e-01
> -2.122940e-01 2.132674e-01 2.720001e-01
> -9.381817e-02 -4.177055e-01 -9.447081e-02
> -2.284989e-01 -1.629394e+00 -8.221019e-01
> -9.277590e-02 1.400266e-01 2.907861e-01
> 1.988462e-01 -5.405778e-01 -3.119255e-01
> -7.558164e-01 2.001730e+00 1.667558e-01
> 3.012934e-01 -6.406174e-02 3.790130e-01
> 3.543466e-01 -4.077679e-01 -6.066139e-01
> -1.346875e+00 1.496919e+00 3.242966e-01
> 5.369087e-01 1.371728e-01 7.370818e-01
> 4.326040e-01 -2.188378e-01 -8.677807e-01
> -1.644332e+00 7.787938e-01 4.639167e-01
> 6.554850e-01 4.234412e-01 1.054419e+00
> 4.165594e-01 -1.497171e-02 -1.080994e+00
> -1.583346e+00 3.896908e-03 5.779007e-01
> 6.311741e-01 7.323407e-01 1.313489e+00
> 3.097103e-01 1.593902e-01 -1.234471e+00
> -1.177212e+00 -6.588543e-01 6.599498e-01
> 4.692754e-01 9.965352e-01 1.499976e+00
> 1.353484e-01 2.662393e-01 -1.319731e+00
> -5.144603e-01 -1.064989e+00 7.055300e-01
> 2.050809e-01 1.158434e+00 1.603573e+00
> 2.440728e-01 1.725280e-01 -1.614918e-01
> -2.506939e-01 1.006582e+00 2.002953e-01
> 6.083720e-02 7.388718e-02 2.927408e-01
> 4.349408e-01 3.355447e-01 -3.140596e-01
> -4.467398e-01 8.391429e-01 3.895223e-01
> 1.084127e-01 1.145205e-01 5.693047e-01
> 5.309975e-01 5.674460e-01 -4.492724e-01
> -5.454022e-01 6.009507e-01 5.572243e-01
> 1.323556e-01 1.723238e-01 8.144088e-01
> 5.113036e-01 8.176804e-01 -5.596583e-01
> -5.251741e-01 3.439281e-01 6.941339e-01
> 1.274468e-01 2.346969e-01 1.014508e+00
> 3.801522e-01 1.031700e+00 -6.391174e-01
> -3.904649e-01 1.241026e-01 7.926856e-01
> 9.475616e-02 2.880431e-01 1.158546e+00
> 1.661326e-01 1.162851e+00 -6.832588e-01
> -1.706394e-01 -1.060665e-02 8.474333e-01
> 4.140996e-02 3.207337e-01 1.238563e+00
>
> __
> Do You Yahoo!?
> Sie sind Spam leid? Yahoo! Mail verfügt über einen herausragenden Schutz 
> gegen Massenmails.
> http://mail.yahoo.com
> ___
> Powered by www.kitware.com
>
> Visi