Re: [Paraview] Applying filters in sample app

2011-03-29 Thread Utkarsh Ayachit
- From: paraview-boun...@paraview.org [mailto:paraview-boun...@paraview.org] On Behalf Of Reuter, Michael A. Sent: 21 March 2011 14:08 To: Utkarsh Ayachit Cc: paraview@paraview.org Subject: Re: [Paraview] Applying filters in sample app Hi Utkarsh,  Thanks for the response. It would be greatly

Re: [Paraview] Applying filters in sample app

2011-03-29 Thread Reuter, Michael A.
: paraview@paraview.org Subject: Re: [Paraview] Applying filters in sample app Hi Utkarsh, Thanks for the response. It would be greatly appreciated if you have the time to provide some code for setting up the implicit plane. I have continued to try and diagnose things myself without much luck

Re: [Paraview] Applying filters in sample app

2011-03-25 Thread owen.arnold
2011 14:08 To: Utkarsh Ayachit Cc: paraview@paraview.org Subject: Re: [Paraview] Applying filters in sample app Hi Utkarsh, Thanks for the response. It would be greatly appreciated if you have the time to provide some code for setting up the implicit plane. I have continued to try and diagnose

Re: [Paraview] Applying filters in sample app

2011-03-25 Thread Utkarsh Ayachit
. Many thanks, Owen. -Original Message- From: paraview-boun...@paraview.org [mailto:paraview-boun...@paraview.org] On Behalf Of Reuter, Michael A. Sent: 21 March 2011 14:08 To: Utkarsh Ayachit Cc: paraview@paraview.org Subject: Re: [Paraview] Applying filters in sample app Hi

Re: [Paraview] Applying filters in sample app

2011-03-21 Thread Reuter, Michael A.
Hi Utkarsh, Thanks for the response. It would be greatly appreciated if you have the time to provide some code for setting up the implicit plane. I have continued to try and diagnose things myself without much luck. Thanks, M On 3/18/11 10:49 AM, Utkarsh Ayachit utkarsh.ayac...@kitware.com

Re: [Paraview] Applying filters in sample app

2011-03-18 Thread Utkarsh Ayachit
Michael, The interactive-widgets such as implicit plane widget are created by the Properties panel to help user change some of the properties for the filter. So yes, if your example, you will not see the implicit plane widget at all. You'll have to manually create it and set it up to update the

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 utkarsh.ayac...@kitware.com wrote: You're simply missing a line to hide the previous

[Paraview] Applying filters in sample app

2011-03-15 Thread Reuter, Michael A.
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

Re: [Paraview] Applying filters in sample app

2011-03-15 Thread Utkarsh Ayachit
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. reute...@ornl.gov wrote: