1 <?xml version="1.0" encoding="iso-8859-1"?>
3 <blackbox name="SphereSource" type="VTK_PolyDataAlgorithm">
5 <author>jpr@creatis.insa-lyon.fr</author>
6 <description><PRE>Creates a Sphere (bbfication of vtkSphereSource)</PRE></description>
7 <category>mesh</category>
9 <include>vtkSphereSource.h</include>
10 <vtkobject>vtkSphereSource</vtkobject>
12 <output name="Out" type="vtkPolyData*" description="Output Sphere" special="vtk output"/>
13 <input name="Active" type="bool" description="Active True/False (default True)"/>
14 <input name="CenterX" type="double" description="Center X coord"/>
15 <input name="CenterY" type="double" description="Center Y coord"/>
16 <input name="CenterZ" type="double" description="Center Z coord"/>
17 <input name="PhiResolution" type="int" description="Sphere PhiResolution (default 10)" special="vtk parameter" />
18 <input name="Radius" type="double" description="Sphere Radius (default 10)" special="vtk parameter" />
19 <input name="ThetaResolution" type="int" description="Sphere ThetaResolution (default 10)" special="vtk parameter" />
24 if (bbGetInputActive()==true)
27 bbGetVtkObject()->SetCenter(bbGetInputCenterX(), bbGetInputCenterY(), bbGetInputCenterZ());
28 //bbGetVtkObject()->SetPhiResolution(bbGetInputPhiResolution());
29 //bbGetVtkObject()->SetThetaResolution(bbGetInputThetaResolution());
30 //bbGetVtkObject()->SetRadius(bbGetInputRadius());
31 //printf("EED box vtk:SphereSource theta=%d phi=%d\n", bbGetInputThetaResolution() , bbGetInputPhiResolution());
32 bbGetVtkObject()->Update();
40 bbSetInputActive(true);
45 bbSetInputPhiResolution(10);
46 bbSetInputThetaResolution(10);
47 </PRE></defaultValues>