Sorry, I've just realised you haven't passed an input to the clip filter.
You need to give the clip filter an input property from the previous
pipeline like so:
 
clip01 = Clip( Input=pipe00 )
clip01.InsideOut=1
clip01.ClipType = "Box"
clip01.ClipType.Scale=[0.5,0.5,0.5]
clip01.UpdatePipeline()
Render()
 
does that work?
 

===================================

Adriano Gagliardi MEng PhD
Project Scientist
Computational Aerodynamics
Aircraft Research Association Ltd.
Manton Lane
Bedford

Tel: 01234 32 4644
E-mail: agaglia...@ara.co.uk
Url: www.ara.co.uk 

 

  _____  

From: Dominic Jennewein [mailto:dominic.jennew...@gmail.com] 
Sent: 20 November 2009 16:47
To: agaglia...@ara.co.uk; paraview@paraview.org
Subject: Re: [Paraview] Apply Clip Filter using Python


Thank you for your answer! 

I already tried both of them.
After adding the "Extract Surface" Filter on the clip01, everything ist
gone. 
I then have to press manually "Reset Bounds" for the Clip and the "Apply"
Button (for the Clip) to get the same state, as if i'm adding both filters
manually.


2009/11/20 Adriano Gagliardi <agaglia...@ara.co.uk>


clip01=Clip()
clip01.InsideOut=1
clip01.ClipType = "Box"
clip01.ClipType.Scale=[0.5,0.5,0.5]
##try this
clip01.UpdatePipeline()
##or this, which I think should automatically update the pipeline for you
Render()

===================================

Adriano Gagliardi MEng PhD
Project Scientist
Computational Aerodynamics
Aircraft Research Association Ltd.
Manton Lane
Bedford

Tel: 01234 32 4644
E-mail: agaglia...@ara.co.uk
Url: www.ara.co.uk 

 

  _____  

From: paraview-boun...@paraview.org [mailto:paraview-boun...@paraview.org]
On Behalf Of Dominic Jennewein
Sent: 20 November 2009 16:14
To: paraview@paraview.org
Subject: [Paraview] Apply Clip Filter using Python


Hello!
I'm new to ParaView and Python and have the following question:

How can I "apply" the Clip Filter using Python?
I'm using ParaView 3.6.1 on Windows XP with the "Python Shell" from the
Tools Menu.

My Python Script:
---------------------------
clip01=Clip()
clip01.InsideOut=1
clip01.ClipType = "Box"
clip01.ClipType.Scale=[0.5,0.5,0.5]
Show(clip01)

surface=ExtractSurface()
Show(surface)

Render()
---------------------------

I haven't found the possibilty to "apply" the Clip Filter via Python...I
always have to press manually the "Apply" Button in the Object Inspector.

I've also tried:

>>> view = servermanager.CreateRenderView()
>>> rep = servermanager.CreateRepresentation(shrinkFilter, view)
>>> view.StillRender()

out of the "Servermanger.pdf", but this creates a new window, which I don't
want.
And also

>>> clip01.UpdatePipeline()

doesn't work.

There was a nearly similar question on this mailinglist, but it doesn't help
me, I'm sorry:

http://markmail.org/thread/54kjzlk4i5d6sprh

Thank you for your work on ParaView! :-)

Dominic Jennewein



---------------------------

This email contains information that is private and confidential and is
intended only for the addressee. If you are not the intended recipient
please delete it and notify us immediately by e-mailing the sender.

Note: All email sent to or from this address may be accessed by someone
other than the recipient, for system management and security reasons.

Aircraft Research Association Ltd. Registered in England, Registration No
503668 Registered Office: Manton Lane, Bedford MK41 7PF England VAT No GB
196351245



 

 



---------------------------
This email contains information that is private and confidential and is 
intended only for the addressee.  If you are not the intended recipient please 
delete it and notify us immediately by e-mailing the sender.
Note: All email sent to or from this address may be accessed by someone other 
than the recipient, for system management and security reasons.
Aircraft Research Association Ltd.  Registered in England, Registration No 
503668 Registered Office: Manton Lane, Bedford MK41 7PF England VAT No GB 
196351245


_______________________________________________
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

Reply via email to