From: Eduardo DAVILA <davila@localhost.localdomain> Date: Fri, 11 Aug 2017 16:22:30 +0000 (+0200) Subject: #3107 BBTK Bug New Normal - branch vtk7itk4 compilation with vtk7 X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=636609a6a30d5fafca10fc74f6f7296c2bd9e851;p=bbtk.git #3107 BBTK Bug New Normal - branch vtk7itk4 compilation with vtk7 --- diff --git a/packages/vtk/src/bbvtkSphereSource.xml b/packages/vtk/src/bbvtkSphereSource.xml index 463fca0..c526c82 100644 --- a/packages/vtk/src/bbvtkSphereSource.xml +++ b/packages/vtk/src/bbvtkSphereSource.xml @@ -14,9 +14,9 @@ <input name="CenterX" type="double" description="Center X coord"/> <input name="CenterY" type="double" description="Center Y coord"/> <input name="CenterZ" type="double" description="Center Z coord"/> -<input name="PhiResolution" type="int" description="Sphere PhiResolution" special="vtk parameter" /> -<input name="Radius" type="double" description="Sphere Radius" special="vtk parameter" /> -<input name="ThetaResolution" type="int" description="Sphere ThetaResolution" special="vtk parameter" /> +<input name="PhiResolution" type="int" description="Sphere PhiResolution (default 10)" special="vtk parameter" /> +<input name="Radius" type="double" description="Sphere Radius (default 10)" special="vtk parameter" /> +<input name="ThetaResolution" type="int" description="Sphere ThetaResolution (default 10)" special="vtk parameter" /> <process> <PRE> @@ -38,6 +38,9 @@ if (bbGetInputActive()==true) <defaultValues><PRE> bbSetInputActive(true); + bbSetInputRadius(10); + bbSetInputPhiResolution(10); + bbSetInputThetaResolution(10); </PRE></defaultValues> </blackbox>