Re: [Paraview] Displaying an unstructured grid of tetrahedra

2011-10-12 Thread Eric E. Monson
, apply a 2D vertex glyph and you'll see all the interior nodes. Or, apply the Extract Edges filter to view the interior edges. -Eric · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · Eric E Monson Duke Visualization Technology Group On Oct 12, 2011, at 9:49 AM, Michael Jackson

Re: [Paraview] What data type to set to show 2D Plot (Line Chart)

2011-10-11 Thread Eric E. Monson
· · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · Eric E Monson Duke Visualization Technology Group On Oct 11, 2011, at 1:37 PM, Michael Jackson wrote: I have a custom reader for ParaView that has multiple output ports. On 2 of those ports are vtkTable data types. This all works just fine

Re: [Paraview] vtkBoxWidget2 RotationEnabledOff doesn't work

2011-08-29 Thread Eric E. Monson
· · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · Eric E Monson Duke Visualization Technology Group On Aug 25, 2011, at 12:19 PM, Jorge Gerardo Peña Pastor wrote: Hi, I'm getting stuck with the following piece of code: vtkSMProxy *boxProxy = builder-createProxy(implicit_functions,Box

Re: [Paraview] Is there a way to get the Paraview version from within a python script in batch?

2011-08-24 Thread Eric E. Monson
Hello Frank, This still seems to work fine: http://www.paraview.org/pipermail/paraview/2009-August/013421.html -Eric · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · Eric E Monson Duke Visualization Technology Group On Aug 24, 2011, at 8:28 AM, Albina, Frank wrote

Re: [Paraview] XDMF data set not showing, or crashes

2011-01-27 Thread Eric E. Monson
-- Eric E Monson Duke Visualization Technology Group On Jan 27, 2011, at 11:04 AM, Jon Goldman wrote: Hi, We have a 2D Uniform grid data set in XDMF format that we are trying to visualize with ParaView. The data is stored in a 1MB HDF5 data set. The (light) meta xdmf file is attached

Re: [Paraview] Best way to represent a network of contacts

2010-12-31 Thread Eric E. Monson
Hey William, Have you included the connectivity structure explicitly in the data you're visualizing (as edges between the grain centers), or is your data really a bunch of vertices with the connectivity embedded in a vector attribute at each vertex? If the contact lines are really part of the

Re: [Paraview] xdmf 2DCoRectMesh

2010-12-01 Thread Eric E. Monson
Hey Felipe, The Dimensions in the Topology needs to describe the number of nodes (points, not cells). If you change it to 4 3 I think it works okay. -Eric -- Eric E Monson Duke Visualization Technology Group On Dec 1, 2010, at 12:37 PM

Re: [Paraview] Newbie question about Glyph filter

2010-12-01 Thread Eric E. Monson
Hey Pierre, The Glyph filter only glyphs points, not cells, and all of your vectors are defined for cells. I would suggest running the data through the Cell Centers filter, which will place points at every cell center, and retain all of the cell-centered data attributes. This will result in a

Re: [Paraview] Newbie question about Glyph filter

2010-12-01 Thread Eric E. Monson
Hi Eric, Thanks a lot! That works great. Just a couple of quick follow-up question: - For the 'Scale Mode' with the Glyph filter, what is the difference between choosing 'vector' and 'vector_components'. It looks like choosing one or the other reverses the arrow direction.. Vector

Re: [Paraview] a quick question about color map

2010-11-20 Thread Eric E. Monson
the scale (min,max) of your color map range match your data values range? Can you check in the Information tab and make sure your scalar values are getting read in properly? -Eric -- Eric E Monson Duke Visualization Technology Group On Nov 16

Re: [Paraview] Bonds representation

2010-11-18 Thread Eric E. Monson
From: Eric E. Monson [emon...@cs.duke.edu] Sent: Wednesday, November 17, 2010 8:09 PM To: Jerier Jean-François Cc: paraview@paraview.org Subject: Re: [Paraview] Bonds representation Hey Jean-François, You should be able to do it, but you'll have to have the right

Re: [Paraview] a quick question about color map

2010-11-17 Thread Eric E. Monson
, Eric E. Monson emon...@cs.duke.edu wrote: Hey Yotam, Personally, I would first do a Threshold filter to remove the points with value 100 rather than try to adapt the color map to these unwanted points or make another data file. Then, just remove the 100 value color from your map

Re: [Paraview] Bonds representation

2010-11-17 Thread Eric E. Monson
Olum wrote: From: Eric E. Monson emon...@cs.duke.edu Date: Wed, 17 Nov 2010 14:09:08 -0500 I haven't used the Tube filter very much, but it looks like e.g. if you have two points which define a polydata line, it ignores cell data, which would be defined on the line itself

Re: [Paraview] Converting a Double array to an UnsignedChar array

2010-11-08 Thread Eric E. Monson
-- Eric E Monson Duke Visualization Technology Group On Nov 7, 2010, at 3:37 PM, David Doria wrote: Is there any way besides a programmable filter to convert a double array to an unsigned char array? I am trying to color data (actual colors, not mapped

Re: [Paraview] How do I save an animation from a python script?

2010-11-04 Thread Eric E. Monson
Hey John, Have you seen this section of the Python scripting documentation? http://www.paraview.org/Wiki/ParaView/Python_Scripting#Animating -Eric -- Eric E Monson Duke Visualization Technology Group On Nov 4, 2010, at 2:23 PM, Milos Ilak

Re: [Paraview] Xdmf module in Paraview Python shell

2010-10-16 Thread Eric E. Monson
support, the other thing that should get built is libvtkXdmfPython.so, which includes the vtkXdmfReader and Writer, which can be very handy. Talk to you later, -Eric -- Eric E Monson Duke Visualization Technology Group On Oct 15, 2010, at 7:18

Re: [Paraview] RAW to STL Script Help?

2010-10-14 Thread Eric E. Monson
. Thanks again, Christopher On Wed, Oct 13, 2010 at 6:11 PM, Eric E. Monson emon...@cs.duke.edu wrote: Hey Christopher, Well, I think that page is the best current documentation. Which version of ParaView are you using? (The API has changed quite a bit over various versions, and if you're

Re: [Paraview] RAW to STL Script Help?

2010-10-13 Thread Eric E. Monson
if you're using 3.8.1. Hope this points you in the right direction, -Eric -- Eric E Monson Duke Visualization Technology Group On Oct 13, 2010, at 5:06 PM, Christopher Olah wrote: Dear All, I have a large number of RAW files (unsigned characters

Re: [Paraview] Glyphing ImageScalarsGradient as arrows

2010-10-08 Thread Eric E. Monson
Hey David, Seems to be because it's a 2D vector. I converted it into 3D with the calculator and it seemed to work. -Eric -- Eric E Monson Duke Visualization Technology Group On Oct 6, 2010, at 6:47 PM, David Doria wrote: Can someone tell

Re: [Paraview] plotting integrated values of cutting plane at various offsets

2010-09-30 Thread Eric E. Monson
-- Eric E Monson Duke Visualization Technology Group On Sep 30, 2010, at 6:00 AM, Paul Edwards wrote: Hi, I'm trying to create a table containing several rows of integrated values for different contours with a programmable filter but I can't see how to use

Re: [Paraview] plotting integrated values of cutting plane at various offsets

2010-09-30 Thread Eric E. Monson
! Does anyone know the way to call this in a programmable filter? Or, is it even wrapped for python? Thanks, Paul On 30 September 2010 14:51, Eric E. Monson emon...@cs.duke.edu wrote: Hey Paul, I don't have an answer to your problem, but just wanted to point out

Re: [Paraview] plotting integrated values of cutting plane at various offsets

2010-09-30 Thread Eric E. Monson
...@gmail.com wrote: Hi Eric, You are right - I would like one row of integrated values per contour. I don't understand how I can do this without Integrate Attributes though. Regards, Paul On 30 September 2010 15:30, Eric E. Monson emon...@cs.duke.edu wrote: Could you be a bit more clear

Re: [Paraview] plotting integrated values of cutting plane at various offsets

2010-09-30 Thread Eric E. Monson
(summed_val[0]) print val, summed_val[0] pdo = self.GetTableOutput() pdo.AddColumn(conts) pdo.AddColumn(sums) On Sep 30, 2010, at 12:11 PM, Eric E. Monson wrote: That's great. This is very rough, but I was thinking of something like this after setting the programmable filter Output

Re: [Paraview] plotting integrated values of cutting plane at various offsets

2010-09-30 Thread Eric E. Monson
+= scalar_step appender.Update() output.ShallowCopy(appender.GetOutput()) --8 On 30 September 2010 17:48, Eric E. Monson emon...@cs.duke.edu wrote: Was having trouble doing the sum using numpy instead of the python built-in sum(), but I

Re: [Paraview] Extracting Data from plot over line

2010-09-28 Thread Eric E. Monson
the data into other programs. If you need to so it from a batch Python script instead of the GUI, then let us know -- I think that should be do-able, too. -Eric -- Eric E Monson Duke Visualization Technology Group On Sep 28, 2010, at 4:23 PM

Re: [Paraview] Build Custom Paraview and plugin in separate directories ?

2010-09-22 Thread Eric E. Monson
of the page I see Utkarsh just sent you. Good luck, -Eric -- Eric E Monson Duke Visualization Technology Group On Sep 22, 2010, at 6:56 AM, R M wrote: Hi everyone, I would like to know if it is possible to build a custom paraview (withe

Re: [Paraview] ParaView and Python general questions

2010-09-14 Thread Eric E. Monson
more specific needs, -Eric -- Eric E Monson Duke Visualization Technology Group On Sep 14, 2010, at 8:21 AM, Milos Ilak wrote: Hi, I am new to ParaView and not entirely new to Python. I have been trying to create Python scripts to automate

Re: [Paraview] Reading Vtk files into say Matlab

2010-09-02 Thread Eric E. Monson
be scripted as a batch Python job.) Hope this helps, -Eric -- Eric E Monson Duke Visualization Technology Group On Aug 30, 2010, at 3:53 PM, Vishwa wrote: Hi, When running a simulation, I ended up saving slices of the data as a .vtk file. I now

Re: [Paraview] nan

2010-08-23 Thread Eric E. Monson
[att_name] But it doesn't seem to work... Thanks, Aurélien 2010/8/20 Eric E. Monson emon...@cs.duke.edu If you can use numpy, and you're using a recent-enough version of ParaView, then you can also use the super-spiffy-numpy-hidden-behind-the-scenes programmable filter API

Re: [Paraview] nan

2010-08-23 Thread Eric E. Monson
Hey Aurélien, (Someone with more detailed knowledge can correct me if I'm wrong...) pdi and inputs[0] refer to the same input to the programmable filter, but pdi is the VTK object and inputs[0] is a more Python-friendly wrapper for the VTK object which makes access to the object properties

Re: [Paraview] nan

2010-08-23 Thread Eric E. Monson
Okay, found how you can see that they're the same object under the covers: pdi = self.GetInputDataObject(0,0) print pdi print inputs[0].VTKObject -Eric On Aug 23, 2010, at 9:46 AM, Eric E. Monson wrote: Hey Aurélien, (Someone with more detailed knowledge can correct me if I'm wrong

Re: [Paraview] nan

2010-08-20 Thread Eric E. Monson
= self.GetOutputDataObject(0) pdo.CopyStructure(pdi) for att_name in inputs[0].PointData.keys(): naninc = inputs[0].PointData[att_name] zerod = numpy.nan_to_num(naninc) output.PointData.append(zerod, att_name) Talk to you later, -Eric -- Eric E

Re: [Paraview] pvbatch hanging in parallel after WriteImage?

2010-08-19 Thread Eric E. Monson
() WriteImage(sphere.0.png) WriteImage(sphere.1.png) Sorry I don't have any solution, but hopefully this will help someone who knows more figure it out. :) -Eric -- Eric E Monson Duke Visualization Technology Group On Aug 19, 2010, at 3:49 PM, Favre

Re: [Paraview] Combining data into one input file

2010-08-17 Thread Eric E. Monson
. From: Eric E. Monson [mailto:emon...@cs.duke.edu] Sent: 16. august 2010 15:05 To: Soleng, Harald Cc: paraview@paraview.org Subject: Re: [Paraview] Combining data into one input file What platform are you on, and did you build ParaView 3.8 yourself or is it one of the binaries

Re: [Paraview] BUG: Crash when saving in pvd format

2010-08-16 Thread Eric E. Monson
with an error message (preferably undtsandable to the user). Greetings, Harald From: Eric E. Monson [mailto:emon...@cs.duke.edu] Sent: 13. august 2010 14:59 To: Soleng, Harald Cc: paraview@paraview.org Subject: Re: [Paraview] BUG: Crash when saving in pvd format Hey Harald

Re: [Paraview] BUG: Crash when saving in pvd format

2010-08-13 Thread Eric E. Monson
, -Eric -- Eric E Monson Duke Visualization Technology Group On Aug 13, 2010, at 7:44 AM, harald.sol...@kongsberg.com wrote: Load the attached file into paraview 3.8. Then try to save in pvd ascii format, and paraview crashes. Harald

Re: [Paraview] Combining data into one input file

2010-08-13 Thread Eric E. Monson
-- Eric E Monson Duke Visualization Technology Group On Aug 13, 2010, at 8:14 AM, harald.sol...@kongsberg.com wrote: Hi, The append dataset filter method does not work for the two data sets I have (see attached files). It is a height map and a path above

Re: [Paraview] Announcement: ParaView coprocessing tutorial at SC10

2010-08-09 Thread Eric E. Monson
Hey Ken, Any chance you'll do something like this at Vis, too? Thanks, -Eric -- Eric E Monson Duke Visualization Technology Group On Aug 9, 2010, at 12:37 PM, Moreland, Kenneth wrote: The ParaView developers are pleased to announce that we

Re: [Paraview] Centering data

2010-08-07 Thread Eric E. Monson
Hey David, Here's another alternative using numpy. There may be a slightly more straightforward way to do it (so anyone please feel free to edit it, or pass along refinements/advice and I can edit it), but it works for me.

Re: [Paraview] HDF5 files with time dimension ParaView

2010-08-04 Thread Eric E. Monson
Hey Pawel, I think I got 4D-time to work with ParaView and Xdmf using a little test data set I wrote. I was able to use the HyperSlab functionality in Xdmf to pick out the correct data set from the 4th dimension for each time step. Note: The only problem I'm having so far is that it loads

Re: [Paraview] AttributeError when transforming vector field

2010-08-04 Thread Eric E. Monson
) # Talk to you later, -Eric -- Eric E Monson Duke Visualization Technology Group On Aug 3, 2010, at 6:02 PM, ccatt...@caltech.edu wrote: Hi, I am new to Paraview, and I need to write a programmable filter to transform a vector field. My

Re: [Paraview] histograms on time dependant datasets (pvd) with PV 3.8.0

2010-07-13 Thread Eric E. Monson
on the VCR controls, the histogram updates with each time step. (OS X 10.6.4, PV binaries downloaded from paraview.org) -Eric -- Eric E Monson Duke Visualization Technology Group On Jul 13, 2010, at 3:09 AM, Philippe David wrote: When I create

Re: [Paraview] histograms on time dependant datasets (pvd) with PV 3.8.0

2010-07-13 Thread Eric E. Monson
) of the histogram. On the other hand, the 3D Vtu view is correctly updated. My pipeline is a simple pvd histogram Philippe DAVID Sciences Computers Consultants office:33(0)4-77-49-75-80 mobile:33(0)6-08-47-64-38 Le 13/07/2010 15:24, Eric E. Monson a écrit : Hello Philippe, What

Re: [Paraview] Plot field data over time?

2010-07-13 Thread Eric E. Monson
, Jul 9, 2010 at 4:49 PM, Eric E. Monson emon...@cs.duke.edu wrote: Hello, I am trying to understand the Plot Global Variables Over Time filter. I have an unstructured grid with multiple time steps I'm reading in to ParaView from a temporal collection in an Xdmf file. With each time step I

Re: [Paraview] Plot field data over time?

2010-07-13 Thread Eric E. Monson
Sorry for the noise -- I see that can.ex2 has these variables. Thanks, -Eric On Jul 13, 2010, at 10:09 AM, Eric E. Monson wrote: Hey Utkarsh, Thanks for the clarification. Do you know if there are any data sets with this type of global field data in the VTK or ParaView data samples so I

Re: [Paraview] hiding intermediate filters created from python

2010-07-09 Thread Eric E. Monson
with Custom Sources from Python, too...? Talk to you later, -Eric -- Eric E Monson Duke Visualization Technology Group On Jul 9, 2010, at 10:22 AM, Stephane PLOIX wrote: Hi, I have made a script that creates a bunch of sources and filters

[Paraview] Plot field data over time?

2010-07-09 Thread Eric E. Monson
-- Eric E Monson Duke Visualization Technology Group ___ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topic

Re: [Paraview] Using Threshold

2010-07-07 Thread Eric E. Monson
the Point Sprite Mode to Texture, then under Point Sprite Texture you can choose Load... and it will let you open an image file to place at every point and they will always face the camera. Good luck, -Eric -- Eric E Monson Duke Visualization

Re: [Paraview] Question about showing a few nodes/points using vtk xml

2010-07-06 Thread Eric E. Monson
-- Eric E Monson Duke Visualization Technology Group On Jul 6, 2010, at 9:07 AM, L.M. de Vries wrote: Hi, I am trying to show a few points (not a mesh) with their values in Paraview using an XML VTK input-file Here are the contents of my

Re: [Paraview] Open a bit image with Paraview

2010-07-02 Thread Eric E. Monson
. Talk to you later, -Eric -- Eric E Monson Duke Visualization Technology Group On Jun 30, 2010, at 6:16 PM, sa...@icp.uni-stuttgart.de wrote: Hello guys, I have a binary image that consists of bits, every bit indicates to a pixel

Re: [Paraview] Open a bit image with Paraview

2010-07-01 Thread Eric E. Monson
by that array, but only Slice representation seems to work well. Contour filter seems to deal with it okay, though, so maybe this will still be useful to you. Talk to you later, -Eric -- Eric E Monson Duke Visualization Technology Group On Jun 30

Re: [Paraview] XDMF writing problem

2010-06-29 Thread Eric E. Monson
mailing list, but this is an okay place to post for now if you're trying to load your data into ParaView. Talk to you later, -Eric -- Eric E Monson Duke Visualization Technology Group On Jun 29, 2010, at 11:19 AM, Samer Afach wrote: Hello

Re: [Paraview] reading timeseries with XDMFReader?

2010-06-15 Thread Eric E. Monson
specific Xdmf questions. Talk to you later, -Eric -- Eric E Monson Duke Visualization Technology Group On Jun 15, 2010, at 12:20 AM, guillaume.ducl...@csiro.au guillaume.ducl...@csiro.au wrote: Hi folks, I’m trying to open a timeserie

Re: [Paraview] Write and read a vtk file (in python)

2010-06-07 Thread Eric E. Monson
/Python_Programmable_Filter -Eric -- Eric E Monson Duke Visualization Technology Group On Jun 7, 2010, at 4:58 AM, Jérôme Plumecoq wrote: Hello, thank you very much ! Do you know if is possible to write directly a reader in python ? Or is it only possible

Re: [Paraview] vtkCellLocator: Python

2010-05-31 Thread Eric E. Monson
(pdi.DATA_TIME_STEPS(),0) So you might be able to just put NAME() in where I put DATA_TIME_STEPS(). Talk to you later, -Eric -- Eric E Monson Duke Visualization Technology Group On May 31, 2010, at 1:23 PM, bastil2...@yahoo.de wrote: Thanks Utkarsh

Re: [Paraview] Extra camera reset in python macro

2010-05-20 Thread Eric E. Monson
() It's not the ideal solution, but it resolves the problem for now. Maybe we'll come up with something better in the future. Pat On Mon, Apr 19, 2010 at 4:43 PM, Eric E. Monson emon...@cs.duke.edu wrote: Yeah, that's a tough call... One issue is that with VTK you don't _have_ to call

Re: [Paraview] About 2D Glyph orientation

2010-05-14 Thread Eric E. Monson
th a custom glyph? I tried to make a Custom Glyph but without any success (probably missed all the steps necessary for such a combination). Or maybe I could include the rotation of 90 degrees around Y-axis during the recording of my data... Cheers Luc2010/5/13 Eric E. Monson emon...@cs.duke.edu He

Re: [Paraview] 64 bit python on windows

2010-05-12 Thread Eric E. Monson
with numpy from: http://www.lfd.uci.edu/~gohlke/pythonlibs/ Hopefully someone else has notes if you really need to build it yourself, but this worked for me. -Eric -- Eric E Monson Duke Visualization Technology Group On May 12, 2010, at 7:30 AM

Re: [Paraview] About 2D Glyph orientation

2010-05-12 Thread Eric E. Monson
for. (Note, I've also checked Filled to fill in the circles, but this isn't necessary.) If I'm misunderstanding your question, feel free to rephrase it and we'll try again. :) -Eric -- Eric E Monson Duke Visualization Technology Group inline

Re: [Paraview] Branding branch

2010-05-11 Thread Eric E. Monson
) Sorry to hear you're having so much trouble. All of us run into these strange things sometimes, but just so you know, it should work without any manual copying of libraries, etc. Good luck, -Eric -- Eric E Monson Duke Visualization Technology

Re: [Paraview] Mac branded packaging

2010-05-11 Thread Eric E. Monson
for packaging the server executables, but also include my custom plugin libraries along with the standard PV ones. Thanks, -Eric On May 10, 2010, at 10:09 AM, Eric E. Monson wrote: Hey all, Packaging of my branded app is working well on Windows and Linux, but I'm trying once again to see if I

Re: [Paraview] Branding branch

2010-05-11 Thread Eric E. Monson
of right now is to switch to Linux operating system instead of windows, and that doesn't necessarily means that problem would be solved either, best! ~sam On Tue, May 11, 2010 at 2:12 PM, Eric E. Monson emon...@cs.duke.edu wrote: Hey Sam, Instead of trying to build those branded

Re: [Paraview] arguments

2010-05-06 Thread Eric E. Monson
I think he meant that he wants to pass arguments to the script when he launches it (the script), not run a script when he launches paraview from the command line. -Eric On May 6, 2010, at 9:32 AM, Utkarsh Ayachit wrote: You can use the --script option. --script=opt Set a python

Re: [Paraview] arguments

2010-05-06 Thread Eric E. Monson
returned from the dialog directly into the python script before running it. -Eric -- Eric E Monson Duke Visualization Technology Group On May 6, 2010, at 9:38 AM, pat marion wrote: To pass command options to the script, then you could set your

Re: [Paraview] center of rotation visibility from python

2010-04-29 Thread Eric E. Monson
Hey Stephane, I don't think so. I filed this feature request a while back: http://www.paraview.org/Bug/view.php?id=8723 -Eric -- Eric E Monson Duke Visualization Technology Group On Apr 29, 2010, at 8:54 AM, Stephane PLOIX wrote: Hi

Re: [Paraview] Cave mode for 3.8

2010-04-28 Thread Eric E. Monson
:). Utkarsh On Wed, Apr 28, 2010 at 12:57 PM, Eric E. Monson emon...@cs.duke.edu wrote: Hey Julien, Someone was asking me recently, and maybe you know the answer: How to people interact with ParaView when running in Cave mode? Is there any support for head tracking? Thanks, -Eric

Re: [Paraview] Xdmf GlobalID attribute removed by Clip

2010-04-27 Thread Eric E. Monson
On Mon, Apr 19, 2010 at 1:48 PM, Eric E. Monson emon...@cs.duke.edu wrote: Hello, It seems that we're sort of getting the worst of both worlds right now ParaView and Xdmf GlobalID AttributeType: Besides not being read in as idtype, a Clip filter removes the GlobalID attribute from the data set

Re: [Paraview] Which QT for 64-Bit Version for Windows

2010-04-23 Thread Eric E. Monson
not an expert in this, but I _did_ work just fine. -Eric -- Eric E Monson Duke Visualization Technology Group On Apr 23, 2010, at 9:49 AM, Christian Werner wrote: Hi! I am about to install the latest Paraview on a 64-Bit Windows System. When

Re: [Paraview] Polyline visualization in ParaView

2010-04-23 Thread Eric E. Monson
in the first paragraph the Plot Over Line works fine for me, too. (I'm not sure about the Grid Connectivity filter since I never use it and don't really know what it does.) Hope this helps get you started, at least, -Eric -- Eric E Monson Duke

Re: [Paraview] Xdmf GlobalID attribute removed by Clip

2010-04-23 Thread Eric E. Monson
Engineer 28 Corporate Drive Clifton Park, NY 12065-8662 Phone: 518-371-3971 x109 On Mon, Apr 19, 2010 at 1:48 PM, Eric E. Monson emon...@cs.duke.edu wrote: Hello, It seems that we're sort of getting the worst of both worlds right now ParaView and Xdmf GlobalID AttributeType: Besides

Re: [Paraview] please help do constuct 3d surface chart from csv file

2010-04-22 Thread Eric E. Monson
Chris On Wed, Apr 21, 2010 at 3:06 PM, Eric E. Monson emon...@cs.duke.edu wrote: Hey Chris, Yes, you are on the right track with that mailing list entry. If you want to actually transform the values of the points, just go to Filters-Transform and then enter a factor between 0 and 1

Re: [Paraview] please help do constuct 3d surface chart from csv file

2010-04-21 Thread Eric E. Monson
-- Eric E Monson Duke Visualization Technology Group On Apr 21, 2010, at 5:27 AM, Chris Botha wrote: Utkarsh I am a new user to Paraview - and therefore do not know what to do when you say to apply the transform filter. I therefore searched the web for more information on how

Re: [Paraview] Use existing texture map for 3D surface

2010-04-21 Thread Eric E. Monson
Hey Olumide, Well, you may be getting out of my shallow understanding of texturing polygons... Is it only the vertices at the interfaces between those surfaces that have multiple texture coordinates? Am I understanding correctly from the image that you have a single texture that gets mapped to

Re: [Paraview] Use existing texture map for 3D surface

2010-04-20 Thread Eric E. Monson
Hey Olumide, If you're writing your data yourself and you already have texture coordinates calculated, then you shouldn't have to use my script at all -- you can just write the texture coordinates into your file and they will be loaded and ready to use when you open your vtp file. The script

Re: [Paraview] Magic Crop Filter

2010-04-20 Thread Eric E. Monson
-- Eric E Monson Duke Visualization Technology Group On Apr 20, 2010, at 5:57 AM, Christian Werner wrote: Hi! Today, I made a very interesting experience. I wanted to have the vtkImageClip functionality available in Paraview and performed the same steps as always to get a Paraview

[Paraview] Xdmf GlobalID attribute removed by Clip

2010-04-19 Thread Eric E. Monson
GlobalID type or not. (OS X 10.6.3) I can file a bug report for this if someone can replicate it. Thanks a lot, -Eric -- Eric E Monson Duke Visualization Technology Group BasicPolyvertex.xmf Description: Binary data

Re: [Paraview] Extra camera reset in python macro

2010-04-19 Thread Eric E. Monson
and then the camera parameters and Render again? This falls through the cracks when a saved state trace is run with Run selected... Thanks, -Eric On Jan 27, 2010, at 5:06 PM, Eric E. Monson wrote: Hey Pat, Thanks a lot for the explanation. If all it takes is a Render() before setting

Re: [Paraview] Extra camera reset in python macro

2010-04-19 Thread Eric E. Monson
19, 2010 at 3:02 PM, Eric E. Monson emon...@cs.duke.edu wrote: Hey Pat, I just ran up against this same problem, but with my evidently sieve-like brain I totally forgot that you had told me the answer less than two months ago... I think something really needs to be done about the first

Re: [Paraview] Use existing texture map for 3D surface

2010-04-19 Thread Eric E. Monson
Hey Olumide, Well, this script works for taking two attribute arrays which contain the U and V coordinates for the texture maps and puts them together into a single two-component array, adds that array as a new vector attribute of the polydata, and then tells the system that this array should

[Paraview] Camera orbit from Python?

2010-04-16 Thread Eric E. Monson
of the properties of the CameraKeyFrame objects in the python shell, but I thought I'd check first if there are any simpler ways. Thanks, -Eric -- Eric E Monson Duke Visualization Technology Group ___ Powered

Re: [Paraview] multiple unstructured grids in a single .vtu file

2010-04-15 Thread Eric E. Monson
=quadraticTetra01.vtu/ /Collection /VTKFile Talk to you later, -Eric -- Eric E Monson Duke Visualization Technology Group On Apr 15, 2010, at 9:20 AM, Massimiliano Martinelli wrote: Hello, do you know if it is possible to write/read two different

[Paraview] Python state trace w/glyphs not working

2010-04-15 Thread Eric E. Monson
haven't investigated more to see how widespread a problem it is, or if it's only with Glyph. Thanks, -Eric -- Eric E Monson Duke Visualization Technology Group ___ Powered by www.kitware.com Visit other

Re: [Paraview] Python state trace w/glyphs not working

2010-04-15 Thread Eric E. Monson
, search_existing=False) Pat On Thu, Apr 15, 2010 at 3:17 PM, Eric E. Monson emon...@cs.duke.edu wrote: Hey all, I haven't been using the python trace or state trace much lately, but I just noticed a problem that shows up both on the Ubuntu 64-bit 3.8 RC1 binary and CVS PV 3.9 on OS X, so

Re: [Paraview] Lookup Table Range

2010-04-14 Thread Eric E. Monson
-- Eric E Monson Duke Visualization Technology Group On Apr 13, 2010, at 1:00 AM, David Pont wrote: I am developing a python script to visualise point data (unstructured grid) with a large number of scalar values for each point. My problem is some of the scalar

[Paraview] Error building today's CVS w/PV_GEN_PROX_DOC ON

2010-04-13 Thread Eric E. Monson
OS X 10.6.3, serial Release Cocoa build, x86_64 arch, CMake 2.9.20100113, Qt 4.6.2) Thanks, -Eric -- Eric E Monson Duke Visualization Technology Group ___ Powered by www.kitware.com Visit other

Re: [Paraview] Error building today's CVS w/PV_GEN_PROX_DOC ON

2010-04-13 Thread Eric E. Monson
Yikes, that was fast... What -- trying to show Utkarsh he's not the only gun in town? :) Thanks, -Eric On Apr 13, 2010, at 6:09 PM, Dave Partyka wrote: Fixed now. Sorry about that. On Tue, Apr 13, 2010 at 6:04 PM, Eric E. Monson emon...@cs.duke.edu wrote: Hello folks, I'm having

Re: [Paraview] Problem linking Cocoa pqWidgets

2010-04-09 Thread Eric E. Monson
to release a Leopard+ (Cocoa x86/x86_64) binary as well as a the traditional Tiger+ (Carbon x86/ppc) binary. On Wed, Jan 6, 2010 at 4:35 PM, Eric E. Monson emon...@cs.duke.edu wrote: Hello, On one of my machines I just switched over to Snow Leopard, so I did a fresh CVS grab of ParaView

Re: [Paraview] Compile Error on Fresh ParaView-3-8 checkout on OS X

2010-04-09 Thread Eric E. Monson
Hey Mike, Are you configuring here with VTK_USE_RPATH = OFF? This is what happens to me, too, if I don't turn it ON. Thanks, -Eric -- Eric E Monson Duke Visualization Technology Group On Apr 9, 2010, at 1:06 PM, Michael Jackson wrote

Re: [Paraview] Auto-Execute Plugin on Selection

2010-04-05 Thread Eric E. Monson
, -Eric -- Eric E Monson Duke Visualization Technology Group On Apr 5, 2010, at 6:07 AM, Christian Werner wrote: Hi! I'd like to know if there is a way to execute a macro on a certain event, e.g. when the user does a selection in the 3D

Re: [Paraview] difference of two data sets

2010-04-02 Thread Eric E. Monson
Hey Xunlei, So, you probably know that you can just highlight both data sets and then apply the Python Programmable Filter (PPF) and it will take multiple inputs. If you are working from CVS ParaView compiled with Python support and have Numpy installed, you can compare attributes of two data

[Paraview] Packaging branded apps on Windows

2010-04-01 Thread Eric E. Monson
it to CMAKE_INSTALL_PREFIX just to get past the error, but then the Qt libs don't get packaged properly. Thanks for the help, -Eric -- Eric E Monson Duke Visualization Technology Group ___ Powered

Re: [Paraview] Packaging branded apps on Windows

2010-04-01 Thread Eric E. Monson
uses internal ParaView variable : PV_INSTALL_BIN_DIR. I'll fix that shortly. Until then feel free to set PV_INSTALL_BIN_DIR to bin. SET(PV_INSTALL_BIN_DIR bin) Utkarsh On Thu, Apr 1, 2010 at 1:30 PM, Eric E. Monson emon...@cs.duke.edu wrote: Hello, I've recently been forced

[Paraview] Branded plugin libraries packaging

2010-04-01 Thread Eric E. Monson
-- Eric E Monson Duke Visualization Technology Group ___ 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

Re: [Paraview] Packaging branded apps on Windows

2010-04-01 Thread Eric E. Monson
Hey Utkarsh, It's all getting packed fine on Windows now, except for one library. I built the ParaView I'm building my branded app against with Python turned ON, but python26.dll isn't getting packaged in my NSIS installer. (All of the Python stuff seems to get packaged just fine on Ubuntu.)

Re: [Paraview] Packaging branded apps on Windows

2010-04-01 Thread Eric E. Monson
GROUP_EXECUTE WORLD_READ COMPONENT Runtime) On Thu, Apr 1, 2010 at 5:13 PM, Eric E. Monson emon...@cs.duke.edu wrote: Hey Utkarsh, It's all getting packed fine on Windows now, except for one library. I built the ParaView I'm building my branded app against with Python turned

Re: [Paraview] Selection of Multiple distinct cells/points

2010-03-28 Thread Eric E. Monson
of the pieces you want, you can just list them there and Run Selection to grab them. It's maybe not as nice as just clicking, but it might do the trick. Talk to you later, -Eric -- Eric E Monson Duke Visualization Technology Group On Mar 28, 2010

Re: [Paraview] Build Error on CVSHEAD on OS X

2010-03-22 Thread Eric E. Monson
Hey Mike, Just out of curiosity, were you building with VTK_USE_RPATH: OFF? I run into something like this when trying to build on OS X without using rpath. -Eric -- Eric E Monson Duke Visualization Technology Group On Mar 22, 2010, at 10

Re: [Paraview] ParaViewFilters.html missing?

2010-03-22 Thread Eric E. Monson
referred to the help in ParaView. Utkarsh On Mon, Mar 8, 2010 at 9:38 AM, Eric E. Monson emon...@cs.duke.edu wrote: Okay, so in the past it only got generated when BUILD_DOCUMENTATION was ON, or was there some other process? Thanks for the quick fix, -Eric On Mar 8, 2010, at 9:35 AM

Re: [Paraview] Lighting adjustments not available

2010-03-19 Thread Eric E. Monson
Hey Mike, For me, though, even the Sphere Source doesn't have those options if I'm coloring by a scalar or vector -- only if I've chosen Solid Color. I don't know if this is how it's supposed to be or not. -Eric -- Eric E Monson Duke

Re: [Paraview] packaging branded problem

2010-03-17 Thread Eric E. Monson
Thanks, Dave. I really appreciate all of the work on the install and packaging stuff, and how quickly you've been making the changes we need. Talk to you later, -Eric On Mar 16, 2010, at 11:30 AM, Dave Partyka wrote: Hi Eric, try now. I have moved that file into ParaView\CMake (as it is only

  1   2   3   >