<div dir="ltr">Dear all,<div><br></div><div>I'm trying to use a Python script to slice a 3D model in multiple locations and interrogate the values at these slices.</div><div><br></div><div>Is it possible to apply the slice with a plane? I.e. intersect the model with a pre-defined plane?</div><div><br></div><div>I can load and view my data and a plane I've defined (see below), but I can't find how to slice/intersect them<br></div><div><div><br></div><div>Many thanks for your help,</div><div><br></div><div>Kevin</div><div><br></div><div>PYTHON SCRIPT:</div><div><br></div><div><div>from paraview.simple import *<br></div><div><br></div><div># read data</div><div>data = PhastaReader(FileName="view.pht") <br></div><div><div>Show(data)</div></div><div>Render()</div><div><br></div><div># define plane<br></div><div>plane1 = Plane()</div><div>plane1.Origin = [0, 0, 0]</div><div>plane1.Point1 = [1, 0, 0]</div><div>plane1.Point2 = [0, 1, 0]</div><div>Show(plane1)</div><div>Render()</div></div><div><br></div></div><div># how to slice with the plane?</div></div>