[Paraview] Camera problem

2011-03-16 Thread Arnaud Candaele
Hi,

I am trying to make a simple animation in paraview, let's say just turn around 
my
geometry.
So, in the "Animation view" panel, I add a "camera", and select "follow path",
which is by default a circle around my geometry.
Now, if I play this animation, it will turn around the geometry, but it is very
zoomed in, so I can't see the whole geometry as it is turning around!
Then, if I try to define the path as a circle with a much larger radius, the
animation stay the same.

Also, if I use "interpolate camera locations" instead of "follow path" in the
animation view panel, it does the same : it goes from one view to the other, BUT
zommed in, even if I define unzoomed views for the different camera locations.
The orientation, angle, etc. are correct, but always zoomed in.

How can I do ?


Regards,

Arnaud. 



___
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] Shapefiles to Paraview (or VTK) format

2011-03-16 Thread Lester Anderson

Hello

Is there an easy way to get Shapefile data from ArcGIS into Paraview? It is an 
important file format and one which is widely used so it would be great if 
there was a method of importing this. As I see it, one has to somehow convert 
the format to a VTK structure (vector-based), not sure of the easiest solution.

Any suggestions?

Thanks

Lester
  ___
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] paraview 3.10 + OpenFOAM

2011-03-16 Thread Takuya OSHIMA
I filed a bug for this:
http://www.paraview.org/Bug/view.php?id=11974
The patch is also attached to this mail.

As Mark says it would be very important, so we really hope to see this
included in the upcoming 3.10.1 release.

Thanks!
Takuya

Takuya OSHIMA, Ph.D.
Faculty of Engineering, Niigata University
8050 Ikarashi-Ninocho, Nishi-ku, Niigata, 950-2181, JAPAN

From: David Partyka 
Subject: Re: [Paraview] paraview 3.10 + OpenFOAM
Date: Fri, 11 Mar 2011 05:32:05 -0500

> It was released two days ago ;-). Your patch most certainly could be
> included for the next release. If you want, submit a bug on
> paraview.org/Bugwith your patch, and possibly a dataset and
> instructions to recreate the
> original issue.
> 
> Thanks!
> 
> On Fri, Mar 11, 2011 at 3:21 AM, OLESEN Mark wrote:
> 
>> When is 3.10 slated for release?
>> I have a patch from Takuya OSHIMA for handling a compact face format in
>> OpenFOAM. It would be very important to get this in before the next release.
>> What tests are needed and what is the time-frame to squeezing in this type
>> of change before the 3.10 release?
>>
>> /mark
>>
>>
>> DISCLAIMER:
>> This electronic transmission (and any attachments thereto) is intended
>> solely for the use of the addressee(s). It may contain confidential or
>> legally privileged information. If you are not the intended recipient of
>> this message, you must delete it immediately and notify the sender. Any
>> unauthorized use or disclosure of this message is strictly prohibited.
>> Faurecia does not guarantee the integrity of this transmission and shall
>> therefore never be liable if the message is altered or falsified nor for any
>> virus, interception or damage to your system.
>>
>> ___
>> 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
>>
diff --git a/IO/vtkOpenFOAMReader.cxx b/IO/vtkOpenFOAMReader.cxx
index e9870cb..7445c6f 100644
--- a/IO/vtkOpenFOAMReader.cxx
+++ b/IO/vtkOpenFOAMReader.cxx
@@ -348,8 +348,6 @@ struct vtkFoamIntVectorVector
 private:
   vtkIntArray *Indices, *Body;
 
-  vtkFoamIntVectorVector();
-
 public:
   ~vtkFoamIntVectorVector()
   {
@@ -363,6 +361,10 @@ public:
 this->Indices->Register(0); // vtkDataArrays do not have ShallowCopy
 this->Body->Register(0);
   }
+  vtkFoamIntVectorVector() :
+Indices(vtkIntArray::New()), Body(vtkIntArray::New())
+  {
+  }
   vtkFoamIntVectorVector(const int nElements, const int bodyLength) :
 Indices(vtkIntArray::New()), Body(vtkIntArray::New())
   {
@@ -2406,6 +2408,51 @@ public:
   }
   }
 
+  // reads compact list of labels.
+  void ReadCompactIOLabelList(vtkFoamIOobject& io)
+  {
+if (io.GetFormat() != vtkFoamIOobject::BINARY)
+  {
+  this->ReadLabelListList(io);
+  return;
+  }
+
+this->Superclass::LabelListListPtr = new vtkFoamIntVectorVector;
+this->Superclass::Type = LABELLISTLIST;
+for(int arrayI = 0; arrayI < 2; arrayI++)
+  {
+  vtkFoamToken currToken;
+  if (!io.Read(currToken))
+{
+throw vtkFoamError() << "Unexpected EOF";
+}
+  if (currToken.GetType() == vtkFoamToken::LABEL)
+{
+const int sizeI = currToken.To();
+if (sizeI < 0)
+  {
+  throw vtkFoamError() << "List size must not be negative: size = "
+  << sizeI;
+  }
+if (sizeI > 0) // avoid invalid reference
+  {
+  vtkIntArray *array = (arrayI == 0
+  ? this->Superclass::LabelListListPtr->GetIndices()
+  : this->Superclass::LabelListListPtr->GetBody());
+  array->SetNumberOfValues(sizeI);
+  io.ReadExpecting('(');
+  io.Read(reinterpret_cast(array->GetPointer(0)),
+  sizeI * sizeof(int));
+  io.ReadExpecting(')');
+  }
+}
+  else
+{
+throw vtkFoamError() << "Expected integer, found " << currToken;
+}
+  }
+  }
+
   bool ReadField(vtkFoamIOobject& io)
   {
 try
@@ -4580,7 +4627,14 @@ vtkFoamIntVectorVector * vtkOpenFOAMReaderPrivate::ReadFacesFile(
   vtkFoamEntryValue dict(NULL);
   try
 {
-dict.ReadLabelListList(io);
+if (io.GetClassName() == "faceCompactList")
+  {
+  dict.ReadCompactIOLabelList(io);
+  }
+else
+  {
+  dict.ReadLabelListList(io);
+  }
 }
   catch(vtkFoamError& e)
 {
___
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/m

[Paraview] compile error

2011-03-16 Thread Jack

Hi all,
I can not seem to get rid of this compile error, I dont care about the 
Qt help docs if that is even the problem? -Jack




Linking CXX static library ../../bin/libNIfTIWriter.a
[100%] Built target NIfTIWriter
[100%] Built target GenerateParaViewQHP
[100%] Compiling Qt help project paraview.qhp
/usr/global/paraview/Trolltech/Qt-4.6.0/bin/qhelpgenerator: error while 
loading shared libraries: libQtHelp.so.4: cannot open shared object 
file: No such file or directory

make[2]: *** [Documentation/paraview.qch] Error 127
make[1]: *** [Documentation/CMakeFiles/ParaViewOnlineHelp.dir/all] Error 2
make: *** [all] Error 2
___
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] compile error

2011-03-16 Thread David Partyka
I think this is a runtime issue executing qhelpgenerator. If you put the
location of libQtHelp.so in your LD_LIBRARY_PATH does it work? So likely if
you do the following:

export LD_LIBRARY_PATH=
/usr/global/paraview/Trolltech/Qt-4.6.0/lib:$LD_LIBRARY_PATH

and then make

On Wed, Mar 16, 2011 at 9:19 AM, Jack  wrote:

> Hi all,
> I can not seem to get rid of this compile error, I dont care about the Qt
> help docs if that is even the problem? -Jack
>
>
>
> Linking CXX static library ../../bin/libNIfTIWriter.a
> [100%] Built target NIfTIWriter
> [100%] Built target GenerateParaViewQHP
> [100%] Compiling Qt help project paraview.qhp
> /usr/global/paraview/Trolltech/Qt-4.6.0/bin/qhelpgenerator: error while
> loading shared libraries: libQtHelp.so.4: cannot open shared object file: No
> such file or directory
> make[2]: *** [Documentation/paraview.qch] Error 127
> make[1]: *** [Documentation/CMakeFiles/ParaViewOnlineHelp.dir/all] Error 2
> make: *** [all] Error 2
> ___
> 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] compile error

2011-03-16 Thread Andy Bauer
I had the same problem.  I fixed it by setting the QT_HELP_GENERATOR cmake
value and that fixed it.

Andy

On Wed, Mar 16, 2011 at 9:26 AM, David Partyka wrote:

> I think this is a runtime issue executing qhelpgenerator. If you put the
> location of libQtHelp.so in your LD_LIBRARY_PATH does it work? So likely if
> you do the following:
>
> export
> LD_LIBRARY_PATH=/usr/global/paraview/Trolltech/Qt-4.6.0/lib:$LD_LIBRARY_PATH
>
> and then make
>
>
> On Wed, Mar 16, 2011 at 9:19 AM, Jack  wrote:
>
>> Hi all,
>> I can not seem to get rid of this compile error, I dont care about the Qt
>> help docs if that is even the problem? -Jack
>>
>>
>>
>> Linking CXX static library ../../bin/libNIfTIWriter.a
>> [100%] Built target NIfTIWriter
>> [100%] Built target GenerateParaViewQHP
>> [100%] Compiling Qt help project paraview.qhp
>> /usr/global/paraview/Trolltech/Qt-4.6.0/bin/qhelpgenerator: error while
>> loading shared libraries: libQtHelp.so.4: cannot open shared object file: No
>> such file or directory
>> make[2]: *** [Documentation/paraview.qch] Error 127
>> make[1]: *** [Documentation/CMakeFiles/ParaViewOnlineHelp.dir/all] Error 2
>> make: *** [all] Error 2
>> ___
>> 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


[Paraview] how to build a parallel server for paraview?

2011-03-16 Thread Yantao Zhang
Hi,
I recently met a problem when I try to use the server/client mode.

In my lab, several PCs are connected using Ethernet.
Windows is running on each of them.
I want to use them as post-processing server.

I run
  "mpiexec -np -hosts host1 host2  pvserver.exe"
Each host is a PC machine.

But I found I can connect to only one PC.
When I connect to it, I can only see its local disk.
How can I make use of all these PCs?
How to build a parallel server for paraview?

Thanks very much.
,
roos.
___
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] compile error

2011-03-16 Thread Jack

Thanks for the quick help, I got it working with the export command -Jack


On 03/16/2011 09:26 AM, David Partyka wrote:
I think this is a runtime issue executing qhelpgenerator. If you put 
the location of libQtHelp.so in your LD_LIBRARY_PATH does it work? So 
likely if you do the following:


export LD_LIBRARY_PATH= 
/usr/global/paraview/Trolltech/Qt-4.6.0/lib:$LD_LIBRARY_PATH


and then make

On Wed, Mar 16, 2011 at 9:19 AM, Jack > wrote:


Hi all,
I can not seem to get rid of this compile error, I dont care about
the Qt help docs if that is even the problem? -Jack



Linking CXX static library ../../bin/libNIfTIWriter.a
[100%] Built target NIfTIWriter
[100%] Built target GenerateParaViewQHP
[100%] Compiling Qt help project paraview.qhp
/usr/global/paraview/Trolltech/Qt-4.6.0/bin/qhelpgenerator: error
while loading shared libraries: libQtHelp.so.4: cannot open shared
object file: No such file or directory
make[2]: *** [Documentation/paraview.qch] Error 127
make[1]: *** [Documentation/CMakeFiles/ParaViewOnlineHelp.dir/all]
Error 2
make: *** [all] Error 2
___
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] CoProcessing: "Could not find whole extent in input"

2011-03-16 Thread Andy Bauer
Hi Daniel,

I just copied those files as is from the wiki and ran the example with both
python scripts and didn't have any problems.  I'm going to need some more
information before diagnosing this.  What version of ParaView are you
using?  Any other info which you think may be pertinent?

Andy

On Wed, Mar 16, 2011 at 2:49 AM, melvin_mm  wrote:

> Dear list,
>
> I am trying to run the C++ CoProcessing example from this page:
> http://www.vtk.org/Wiki/Coprocessing_example
>
> It compiles fine with cmake, however when running it with one of the Python
> example scripts on the page I get the error:
>
> "COULD NOT FIND WHOLE EXTENT in input for file series writer"
>
> What am I doing wrong?
>
>
> Kind regards,
> Daniel Molloy
> ___
> 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] paraview 3.10 + OpenFOAM

2011-03-16 Thread David Partyka
This has been applied to release and master.

http://vtk.org/gitweb?p=VTK.git;a=commit;h=9fda3e707034e45adc261f66089de5d7711d870e

On Wed, Mar 16, 2011 at 8:33 AM, Takuya OSHIMA
wrote:

> I filed a bug for this:
> http://www.paraview.org/Bug/view.php?id=11974
> The patch is also attached to this mail.
>
> As Mark says it would be very important, so we really hope to see this
> included in the upcoming 3.10.1 release.
>
> Thanks!
> Takuya
>
> Takuya OSHIMA, Ph.D.
> Faculty of Engineering, Niigata University
> 8050 Ikarashi-Ninocho, Nishi-ku, Niigata, 950-2181, JAPAN
>
> From: David Partyka 
> Subject: Re: [Paraview] paraview 3.10 + OpenFOAM
> Date: Fri, 11 Mar 2011 05:32:05 -0500
>
> > It was released two days ago ;-). Your patch most certainly could be
> > included for the next release. If you want, submit a bug on
> > paraview.org/Bugwith your patch, and possibly a dataset and
> > instructions to recreate the
> > original issue.
> >
> > Thanks!
> >
> > On Fri, Mar 11, 2011 at 3:21 AM, OLESEN Mark  >wrote:
> >
> >> When is 3.10 slated for release?
> >> I have a patch from Takuya OSHIMA for handling a compact face format in
> >> OpenFOAM. It would be very important to get this in before the next
> release.
> >> What tests are needed and what is the time-frame to squeezing in this
> type
> >> of change before the 3.10 release?
> >>
> >> /mark
> >>
> >>
> >> DISCLAIMER:
> >> This electronic transmission (and any attachments thereto) is intended
> >> solely for the use of the addressee(s). It may contain confidential or
> >> legally privileged information. If you are not the intended recipient of
> >> this message, you must delete it immediately and notify the sender. Any
> >> unauthorized use or disclosure of this message is strictly prohibited.
> >> Faurecia does not guarantee the integrity of this transmission and shall
> >> therefore never be liable if the message is altered or falsified nor for
> any
> >> virus, interception or damage to your system.
> >>
> >> ___
> >> 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] CoProcessing: "Could not find whole extent in input"

2011-03-16 Thread Andy Bauer
Hi Daniel,

Please respond to the list as well to allow other people to benefit from
this discussion.

I just found out what is going on.  This has been fixed in the master
branch.  For the release branch, it isn't affecting the output for these
examples and is just a print statement that accidentally made it through.

Andy

On Wed, Mar 16, 2011 at 12:20 PM, melvin_mm  wrote:

>  Dear Andy,
>
> thanks for your immediate response.
>
> I have been trying it with ParaView 3.10 on CentOS 5.5 and Mac OS X,
> getting the same problem in both.
>
> What does the set up exactly look like? Which paraview application will I
> have to start, if any?
>
>
> Kind regards,
> Daniel
>
> Hi Daniel,
>
> I just copied those files as is from the wiki and ran the example with both
> python scripts and didn't have any problems.  I'm going to need some more
> information before diagnosing this.  What version of ParaView are you
> using?  Any other info which you think may be pertinent?
>
> Andy
>
> On Wed, Mar 16, 2011 at 2:49 AM, melvin_mm  wrote:
>
>> Dear list,
>>
>> I am trying to run the C++ CoProcessing example from this page:
>> http://www.vtk.org/Wiki/Coprocessing_example
>>
>> It compiles fine with cmake, however when running it with one of the
>> Python example scripts on the page I get the error:
>>
>> "COULD NOT FIND WHOLE EXTENT in input for file series writer"
>>
>> What am I doing wrong?
>>
>>
>> Kind regards,
>> Daniel Molloy
>> ___
>> 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] CoProcessing: "Could not find whole extent in input"

2011-03-16 Thread melvin_mm

Dear Andy,

I can see the output files - however, in which way will I see the 
results in the ParaView application?



Kind regards,
Daniel


Hi Daniel,

Please respond to the list as well to allow other people to benefit 
from this discussion.


I just found out what is going on.  This has been fixed in the master 
branch.  For the release branch, it isn't affecting the output for 
these examples and is just a print statement that accidentally made it 
through.


Andy

On Wed, Mar 16, 2011 at 12:20 PM, melvin_mm > wrote:


Dear Andy,

thanks for your immediate response.

I have been trying it with ParaView 3.10 on CentOS 5.5 and Mac OS
X, getting the same problem in both.

What does the set up exactly look like? Which paraview application
will I have to start, if any?


Kind regards,
Daniel


Hi Daniel,

I just copied those files as is from the wiki and ran the example
with both python scripts and didn't have any problems.  I'm going
to need some more information before diagnosing this.  What
version of ParaView are you using?  Any other info which you
think may be pertinent?

Andy

On Wed, Mar 16, 2011 at 2:49 AM, melvin_mm mailto:melvin...@gmx.de>> wrote:

Dear list,

I am trying to run the C++ CoProcessing example from this page:
http://www.vtk.org/Wiki/Coprocessing_example

It compiles fine with cmake, however when running it with one
of the Python example scripts on the page I get the error:

"COULD NOT FIND WHOLE EXTENT in input for file series writer"

What am I doing wrong?


Kind regards,
Daniel Molloy
___
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] CoProcessing: "Could not find whole extent in input"

2011-03-16 Thread Andy Bauer
If you run the paraview gui, you should be able to just open these files
directly there.  A new paraview user's guide is available at
http://paraview.org/Wiki/ParaView/Users_Guide/Table_Of_Contents which may
help you.

Andy

On Wed, Mar 16, 2011 at 1:17 PM, melvin_mm  wrote:

>  Dear Andy,
>
> I can see the output files - however, in which way will I see the results
> in the ParaView application?
>
>
> Kind regards,
> Daniel
>
> Hi Daniel,
>
> Please respond to the list as well to allow other people to benefit from
> this discussion.
>
> I just found out what is going on.  This has been fixed in the master
> branch.  For the release branch, it isn't affecting the output for these
> examples and is just a print statement that accidentally made it through.
>
> Andy
>
> On Wed, Mar 16, 2011 at 12:20 PM, melvin_mm  wrote:
>
>>  Dear Andy,
>>
>> thanks for your immediate response.
>>
>> I have been trying it with ParaView 3.10 on CentOS 5.5 and Mac OS X,
>> getting the same problem in both.
>>
>> What does the set up exactly look like? Which paraview application will I
>> have to start, if any?
>>
>>
>> Kind regards,
>> Daniel
>>
>> Hi Daniel,
>>
>> I just copied those files as is from the wiki and ran the example with
>> both python scripts and didn't have any problems.  I'm going to need some
>> more information before diagnosing this.  What version of ParaView are you
>> using?  Any other info which you think may be pertinent?
>>
>> Andy
>>
>> On Wed, Mar 16, 2011 at 2:49 AM, melvin_mm  wrote:
>>
>>> Dear list,
>>>
>>> I am trying to run the C++ CoProcessing example from this page:
>>> http://www.vtk.org/Wiki/Coprocessing_example
>>>
>>> It compiles fine with cmake, however when running it with one of the
>>> Python example scripts on the page I get the error:
>>>
>>> "COULD NOT FIND WHOLE EXTENT in input for file series writer"
>>>
>>> What am I doing wrong?
>>>
>>>
>>> Kind regards,
>>> Daniel Molloy
>>> ___
>>> 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] Applying filters in sample app

2011-03-16 Thread Reuter, Michael A.
Hi Utkarsh,

 Thanks, that did the trick. I'm also trying to get an ImplicitPlaneWidget
(IPW) up at the same time. Is the default behavior for the IPW to be
invisible? 

M


On 3/15/11 3:10 PM, "Utkarsh Ayachit"  wrote:

>You're simply missing a line to hide the previous representation. I
>just added in mpMainWindow::onCutButtonClicked before the render()
>call and the slice shows up.
>
>   this->ActiveSourceRepr->setVisible(false);
>
>Utkarsh
>
>On Tue, Mar 15, 2011 at 12:17 PM, Reuter, Michael A. 
>wrote:
>> Hi,
>>
>> I'm working on a sample application and I've been trying to make a cut
>>appear on the data that is being viewed. I've followed the methodology
>>used in the QuickContour application in my application, but the cut
>>never appears on the data view. I'm using the data file associated with
>>the QuickContour application to test my application. I'm guessing I'm
>>just not understanding the required setup logic for behaviors and
>>reactions in order to get the cut to apply. If anyone can see where I'm
>>being dumb, my code is located here:
>>https://github.com/mareuter/PVMockupGui. The cut is being applied in the
>>mpMainWindow class in mpMainWindow::onCutButtonClicked. I am currently
>>compiling against the ParaView git master on Ubuntu.
>>
>> Thanks,
>> M
>>
>>
>> Dr. Michael Reuter
>>
>> Scientific Data Analysis Group
>>
>> Neutron Scattering Science Division
>>
>> Oak Ridge National Laboratory
>>
>>
>> Office: 1-865-241-7216
>>
>> Fax: 1-865-574-6080
>>
>> Email: reute...@ornl.gov
>>
>> ___
>> 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] CoProcessing: "Could not find whole extent in input"

2011-03-16 Thread melvin_mm
It is possible to open them - but how is it possible to see the 
visualization results being displayed live in the application, on creation?


Kind regards,
Daniel

If you run the paraview gui, you should be able to just open these 
files directly there.  A new paraview user's guide is available at 
http://paraview.org/Wiki/ParaView/Users_Guide/Table_Of_Contents which 
may help you.


Andy

On Wed, Mar 16, 2011 at 1:17 PM, melvin_mm > wrote:


Dear Andy,

I can see the output files - however, in which way will I see the
results in the ParaView application?


Kind regards,
Daniel


Hi Daniel,

Please respond to the list as well to allow other people to
benefit from this discussion.

I just found out what is going on.  This has been fixed in the
master branch.  For the release branch, it isn't affecting the
output for these examples and is just a print statement that
accidentally made it through.

Andy

On Wed, Mar 16, 2011 at 12:20 PM, melvin_mm mailto:melvin...@gmx.de>> wrote:

Dear Andy,

thanks for your immediate response.

I have been trying it with ParaView 3.10 on CentOS 5.5 and
Mac OS X, getting the same problem in both.

What does the set up exactly look like? Which paraview
application will I have to start, if any?


Kind regards,
Daniel


Hi Daniel,

I just copied those files as is from the wiki and ran the
example with both python scripts and didn't have any
problems.  I'm going to need some more information before
diagnosing this.  What version of ParaView are you using? 
Any other info which you think may be pertinent?


Andy

On Wed, Mar 16, 2011 at 2:49 AM, melvin_mm mailto:melvin...@gmx.de>> wrote:

Dear list,

I am trying to run the C++ CoProcessing example from
this page:
http://www.vtk.org/Wiki/Coprocessing_example

It compiles fine with cmake, however when running it
with one of the Python example scripts on the page I get
the error:

"COULD NOT FIND WHOLE EXTENT in input for file series
writer"

What am I doing wrong?


Kind regards,
Daniel Molloy
___
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] issue with "make install" in 3.10

2011-03-16 Thread bastil2...@yahoo.de
Robert, David,

our QT 4.6.2 was build from source with QtNetwork enabled. So what is wrong?

Regards Bastian

Am 15.03.2011 22:04, schrieb Robert Maynard:
> We are asking because the 4.6.X prebuilt frameworks from Nokia don't
> come with QNetworkAccessManager. I would confirm with your
> system administrator that Qt has been built with QtNetwork enabled.
>
>
> On Tue, Mar 15, 2011 at 2:59 PM, bastil2...@yahoo.de
>   > wrote:
>
> Am 14.03.2011 20:06, schrieb David Partyka:
>> Are you using a prebuilt qt from nokia? Or did you build it youself?
>
> David,
>
> our system administrator did the build. AFAIK it was build from
> source.
>


> Regards Bastian
>
>
>>
>> On Mon, Mar 14, 2011 at 3:01 PM, bastil2...@yahoo.de
>>  > > wrote:
>>
>> Thanks David,
>>
>> I forgot to mention - I already tried this. It does not help
>> at all. Instead of this I get three missing *.so-Libraries
>> (all from QT). After symmlinking them from the qt-lib to the
>> paraview-lib I still get the same error.
>>
>> Regards Bastian
>>
>> Am 14.03.2011 19:58, schrieb David Partyka:
>>> Try turning off PARAVIEW_INSTALL_THIRD_PARTY_LIBRARIES. ( I
>>> think I am going to make it default OFF instead of ON). Then
>>> blow away your install tree and do a fresh make install.
>>> Does that resolve the problem?
>>>
>>> On Mon, Mar 14, 2011 at 2:55 PM, bastil2...@yahoo.de
>>>  >> > wrote:
>>>
>>> Hi all,
>>>
>>> I have build the 3.10 source from paraview.org
>>>  without any plroblems.
>>> However, I can run paraview only from the build
>>> directory. After a
>>> successuful "make install" I get:
>>>
>>>  /opt/paraview/3.10.0/lib/paraview-3.10/paraview: symbol
>>> lookup error:
>>> /opt/paraview/3.10.0/lib/paraview-3.10/libQtXmlPatterns.so.4:
>>> undefined symbol: _ZNK21QNetworkAccessManager10metaObjectEv
>>>
>>>
>>>
>>> I use QT 4.6.2 which is not my system QT. All paths in
>>> ccmake 2.8.3
>>> point to this QT. Ideas?
>>>
>>> Thanks Bastian
>>> ___
>>> 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
>
>
> ___
> 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
>
>
>
>
> -- 
> Robert Maynard
>
>
> ___
> 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: 
h

Re: [Paraview] issue with "make install" in 3.10

2011-03-16 Thread David Partyka
You have /opt/paraview/3.10.0/lib/paraview-3.10/libQtXmlPatterns.so.4 in
your install tree. Is QtNetwork.so also in that directory?

On Wed, Mar 16, 2011 at 2:29 PM, bastil2...@yahoo.de wrote:

>  Robert, David,
>
> our QT 4.6.2 was build from source with QtNetwork enabled. So what is
> wrong?
>
> Regards Bastian
>
> Am 15.03.2011 22:04, schrieb Robert Maynard:
>
> We are asking because the 4.6.X prebuilt frameworks from Nokia don't come
> with QNetworkAccessManager. I would confirm with your
> system administrator that Qt has been built with QtNetwork enabled.
>
>
>  On Tue, Mar 15, 2011 at 2:59 PM, bastil2...@yahoo.de  > wrote:
>
>>  Am 14.03.2011 20:06, schrieb David Partyka:
>>
>> Are you using a prebuilt qt from nokia? Or did you build it youself?
>>
>>
>>  David,
>>
>> our system administrator did the build. AFAIK it was build from source.
>>
>>
>
>   Regards Bastian
>>
>>
>>
>> On Mon, Mar 14, 2011 at 3:01 PM, bastil2...@yahoo.de > > wrote:
>>
>>>  Thanks David,
>>>
>>> I forgot to mention - I already tried this. It does not help at all.
>>> Instead of this I get three missing *.so-Libraries (all from QT). After
>>> symmlinking them from the qt-lib to the paraview-lib I still get the same
>>> error.
>>>
>>> Regards Bastian
>>>
>>> Am 14.03.2011 19:58, schrieb David Partyka:
>>>
>>> Try turning off PARAVIEW_INSTALL_THIRD_PARTY_LIBRARIES. ( I think I am
>>> going to make it default OFF instead of ON). Then blow away your install
>>> tree and do a fresh make install. Does that resolve the problem?
>>>
>>>  On Mon, Mar 14, 2011 at 2:55 PM, bastil2...@yahoo.de <
>>> bastil2...@yahoo.de> wrote:
>>>
 Hi all,

 I have build the 3.10 source from paraview.org without any plroblems.
 However, I can run paraview only from the build directory. After a
 successuful "make install" I get:

  /opt/paraview/3.10.0/lib/paraview-3.10/paraview: symbol lookup error:
 /opt/paraview/3.10.0/lib/paraview-3.10/libQtXmlPatterns.so.4: undefined
 symbol: _ZNK21QNetworkAccessManager10metaObjectEv



 I use QT 4.6.2 which is not my system QT. All paths in ccmake 2.8.3
 point to this QT. Ideas?

 Thanks Bastian
 ___
 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
>>
>>
>>
>> ___
>> 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
>>
>>
>
>
> --
> Robert Maynard
>
>
> ___
> 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] CoProcessing: "Could not find whole extent in input"

2011-03-16 Thread Andy Bauer
Pat Marion did some work on that but it hasn't made it into the main
paraview repo yet.  You can see a video at http://patmarion.com/pv/live
-vis.mp4 or http://patmarion.com/pv/live-vis.ogv.  It will eventually make
it into ParaView but I don't know what the timeline for that is.

Andy


On Wed, Mar 16, 2011 at 2:07 PM, melvin_mm  wrote:

>  It is possible to open them - but how is it possible to see the
> visualization results being displayed live in the application, on creation?
>
> Kind regards,
> Daniel
>
> If you run the paraview gui, you should be able to just open these files
> directly there.  A new paraview user's guide is available at
> http://paraview.org/Wiki/ParaView/Users_Guide/Table_Of_Contents which may
> help you.
>
> Andy
>
> On Wed, Mar 16, 2011 at 1:17 PM, melvin_mm  wrote:
>
>>  Dear Andy,
>>
>> I can see the output files - however, in which way will I see the results
>> in the ParaView application?
>>
>>
>> Kind regards,
>> Daniel
>>
>> Hi Daniel,
>>
>> Please respond to the list as well to allow other people to benefit from
>> this discussion.
>>
>> I just found out what is going on.  This has been fixed in the master
>> branch.  For the release branch, it isn't affecting the output for these
>> examples and is just a print statement that accidentally made it through.
>>
>> Andy
>>
>> On Wed, Mar 16, 2011 at 12:20 PM, melvin_mm  wrote:
>>
>>>  Dear Andy,
>>>
>>> thanks for your immediate response.
>>>
>>> I have been trying it with ParaView 3.10 on CentOS 5.5 and Mac OS X,
>>> getting the same problem in both.
>>>
>>> What does the set up exactly look like? Which paraview application will I
>>> have to start, if any?
>>>
>>>
>>> Kind regards,
>>> Daniel
>>>
>>> Hi Daniel,
>>>
>>> I just copied those files as is from the wiki and ran the example with
>>> both python scripts and didn't have any problems.  I'm going to need some
>>> more information before diagnosing this.  What version of ParaView are you
>>> using?  Any other info which you think may be pertinent?
>>>
>>> Andy
>>>
>>> On Wed, Mar 16, 2011 at 2:49 AM, melvin_mm  wrote:
>>>
 Dear list,

 I am trying to run the C++ CoProcessing example from this page:
 http://www.vtk.org/Wiki/Coprocessing_example

 It compiles fine with cmake, however when running it with one of the
 Python example scripts on the page I get the error:

 "COULD NOT FIND WHOLE EXTENT in input for file series writer"

 What am I doing wrong?


 Kind regards,
 Daniel Molloy
 ___
 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] CoProcessing: "Could not find whole extent in input"

2011-03-16 Thread melvin_mm
Ok - so there is currently no way to create this kind of live 
visualization in ParaView.


I hope that the library makes it into the release version soon - it 
looks fantastic, thanks for the links.



Best,
Daniel

Pat Marion did some work on that but it hasn't made it into the main 
paraview repo yet.  You can see a video at 
http://patmarion.com/pv/live-vis.mp4 
 or 
http://patmarion.com/pv/live-vis.ogv 
.  It will eventually make it 
into ParaView but I don't know what the timeline for that is.


Andy


On Wed, Mar 16, 2011 at 2:07 PM, melvin_mm > wrote:


It is possible to open them - but how is it possible to see the
visualization results being displayed live in the application, on
creation?

Kind regards,
Daniel


If you run the paraview gui, you should be able to just open
these files directly there.  A new paraview user's guide is
available at
http://paraview.org/Wiki/ParaView/Users_Guide/Table_Of_Contents
which may help you.

Andy

On Wed, Mar 16, 2011 at 1:17 PM, melvin_mm mailto:melvin...@gmx.de>> wrote:

Dear Andy,

I can see the output files - however, in which way will I see
the results in the ParaView application?


Kind regards,
Daniel


Hi Daniel,

Please respond to the list as well to allow other people to
benefit from this discussion.

I just found out what is going on.  This has been fixed in
the master branch.  For the release branch, it isn't
affecting the output for these examples and is just a print
statement that accidentally made it through.

Andy

On Wed, Mar 16, 2011 at 12:20 PM, melvin_mm
mailto:melvin...@gmx.de>> wrote:

Dear Andy,

thanks for your immediate response.

I have been trying it with ParaView 3.10 on CentOS 5.5
and Mac OS X, getting the same problem in both.

What does the set up exactly look like? Which paraview
application will I have to start, if any?


Kind regards,
Daniel


Hi Daniel,

I just copied those files as is from the wiki and ran
the example with both python scripts and didn't have
any problems.  I'm going to need some more information
before diagnosing this.  What version of ParaView are
you using?  Any other info which you think may be
pertinent?

Andy

On Wed, Mar 16, 2011 at 2:49 AM, melvin_mm
mailto:melvin...@gmx.de>> wrote:

Dear list,

I am trying to run the C++ CoProcessing example
from this page:
http://www.vtk.org/Wiki/Coprocessing_example

It compiles fine with cmake, however when running
it with one of the Python example scripts on the
page I get the error:

"COULD NOT FIND WHOLE EXTENT in input for file
series writer"

What am I doing wrong?


Kind regards,
Daniel Molloy
___
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] paraview transformation filter

2011-03-16 Thread haiyan

Hi,

I'm new to paraview. I'm trying to display two surfaces in 3D view in 
paraview GUI. Two surfaces (.vtk file) are intersected with each other 
and can be displayed correctly using vtk-python script. I put the 
orientation, translation, scale, which are extracted from the 4x4 
transformation matrix, in the 'transformation' window under 'display' in 
'object inspector', and set the origin in the header of the vtk files of 
the two surfaces to '0, 0, 0'. But no luck.


So do I need to construct a pipeline instead? or, paraview calculates 
the orientation and translation from the matrix in a different way 
comparing to vtk (I used the same matrix in vtk.DeepCopy)?


Regards
Helen
<>___
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] Image color map

2011-03-16 Thread David Doria
>
> The image channel is displayed correctly in the prebuilt 3.10 for 32bit
> linux.
>
> David
>

I pulled again from master today and built and it works fine now. Very
strange.

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] paraview 3.10 + OpenFOAM

2011-03-16 Thread Takuya OSHIMA
Thanks, David!

Takuya

Takuya OSHIMA, Ph.D.
Faculty of Engineering, Niigata University
8050 Ikarashi-Ninocho, Nishi-ku, Niigata, 950-2181, JAPAN


From: David Partyka 
Subject: Re: [Paraview] paraview 3.10 + OpenFOAM
Date: Wed, 16 Mar 2011 11:52:52 -0400

> This has been applied to release and master.
> 
> http://vtk.org/gitweb?p=VTK.git;a=commit;h=9fda3e707034e45adc261f66089de5d7711d870e
> 
> On Wed, Mar 16, 2011 at 8:33 AM, Takuya OSHIMA
> wrote:
> 
>> I filed a bug for this:
>> http://www.paraview.org/Bug/view.php?id=11974
>> The patch is also attached to this mail.
>>
>> As Mark says it would be very important, so we really hope to see this
>> included in the upcoming 3.10.1 release.
>>
>> Thanks!
>> Takuya
>>
>> Takuya OSHIMA, Ph.D.
>> Faculty of Engineering, Niigata University
>> 8050 Ikarashi-Ninocho, Nishi-ku, Niigata, 950-2181, JAPAN
>>
>> From: David Partyka 
>> Subject: Re: [Paraview] paraview 3.10 + OpenFOAM
>> Date: Fri, 11 Mar 2011 05:32:05 -0500
>>
>> > It was released two days ago ;-). Your patch most certainly could be
>> > included for the next release. If you want, submit a bug on
>> > paraview.org/Bugwith your patch, and possibly a dataset and
>> > instructions to recreate the
>> > original issue.
>> >
>> > Thanks!
>> >
>> > On Fri, Mar 11, 2011 at 3:21 AM, OLESEN Mark > >wrote:
>> >
>> >> When is 3.10 slated for release?
>> >> I have a patch from Takuya OSHIMA for handling a compact face format in
>> >> OpenFOAM. It would be very important to get this in before the next
>> release.
>> >> What tests are needed and what is the time-frame to squeezing in this
>> type
>> >> of change before the 3.10 release?
>> >>
>> >> /mark
>> >>
>> >>
>> >> DISCLAIMER:
>> >> This electronic transmission (and any attachments thereto) is intended
>> >> solely for the use of the addressee(s). It may contain confidential or
>> >> legally privileged information. If you are not the intended recipient of
>> >> this message, you must delete it immediately and notify the sender. Any
>> >> unauthorized use or disclosure of this message is strictly prohibited.
>> >> Faurecia does not guarantee the integrity of this transmission and shall
>> >> therefore never be liable if the message is altered or falsified nor for
>> any
>> >> virus, interception or damage to your system.
>> >>
>> >> ___
>> >> 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