<p>Hello everyone.</p>
<p>Im trying to do a home-work in VTK but i'm having some problems...<br>I want to put a texture on a HALF SPHERE, well, the problem is that with<br>vtkSphereSource i can design halph a sphere like this : </p>
<p>vtkSphereSource *Sphere = vtkSphereSource::New();<br> Sphere->SetStartPhi(0.0);<br> Sphere->SetEndPhi(90.0);</p>
<p>but with this class the texture does not fit.</p>
<p>With the class vtkTexturedSphereSource i can put the texture in the sphere<br>but i cant design half a sphere.</p>
<p>this class doesnt have the methods, ::SetStartPhi and ::SetEndPhi, it has <br>SetPhi and SetTheta but seems that these 2 dont work. I tried like this : </p>
<p>vtkTexturedSphereSource *Sphere = vtkTexturedSphereSource::New();<br> Sphere->SetPhi(0.0);<br> Sphere->SetPhi(90.0);</p>
<p>but with this code the sphere is complete...and not half a sphere like i <br>pretend...</p>
<p>So, mainly the problem is, with vtkSphereSource i cant fit the texture, <br>with vtkTexturedSphereSource i cant draw half a sphere.</p>
<p>Hope someone can help me...<br>thank you</p>