<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 12pt;
font-family:΢ÈíÑźÚ
}
--></style></head>
<body class='hmmessage'><div dir='ltr'>Hello vtkusers,<div><br></div><div>I used vtkplane to clip a volume. Everything is find until the volume is transformed. The plane is still at the original position. I then applied vtkTransform to the plane, but the plane is still the same place. The code snippet is as below:</div><div><br></div><div><div>    vtkSmartPointer<vtkPlane> plane =</div><div>        vtkSmartPointer<vtkPlane>::New();</div><div>    plane->SetOrigin(0, tomo2DDims / 2, 0);</div><div>    plane->SetNormal(0, 1, 0);</div><div>    vtkSmartPointer<vtkTransform> transPlane = vtkSmartPointer<vtkTransform>::New();</div><div>    transPlane->RotateY(90);</div><div>    transPlane->RotateZ(90);</div><div>    transPlane->RotateX(55);</div><div>    transPlane->RotateY(3);</div><div>    plane->SetTransform(transPlane);</div><div><br></div><div>    cutVolumeMapper->AddClippingPlane(plane);</div></div><div><br></div><div><br></div><div>Appreciate your help in advance!</div><div><br></div><div>cheers,</div><div><br></div><div>Chiang</div>                                        </div></body>
</html>