I have set up a very basic vtkParametricTorus and can&#39;t figure out how to move the &quot;center&quot; of the torus to an x,y,z location of my choice.<br><br>vtkParametricTorus *torus=vtkParametricTorus::New();<br>    torus-&gt;SetRingRadius(tumor_rad);<br>
    torus-&gt;SetCrossSectionRadius(0.00028);<br><br>    vtkParametricFunctionSource *ptorus=vtkParametricFunctionSource::New();<br>    ptorus-&gt;SetParametricFunction(torus);<br><br>    vtkPolyDataMapper *torusMapper=vtkPolyDataMapper::New();<br>
    torusMapper-&gt;SetInput(ptorus-&gt;GetOutput());<br><br>    vtkActor *torusActor=vtkActor::New();<br>    torusActor-&gt;SetMapper(torusMapper);<br><br>Please help.<br><br>Thanks,<br>Haider<br>