X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=packages%2Fvtk%2Fsrc%2FbbvtkSphereList.h;h=b23b99a0c99aff092c852f953f008f7b1cc52002;hb=e7388f3073fa5eb9e35dafa8fbdf9e72ef6afd57;hp=ec632f30e266289c9d03c209ebcb1cc20e1edc0d;hpb=076686675e6ef7994bf843e31d5b17341a657325;p=bbtk.git diff --git a/packages/vtk/src/bbvtkSphereList.h b/packages/vtk/src/bbvtkSphereList.h index ec632f3..b23b99a 100644 --- a/packages/vtk/src/bbvtkSphereList.h +++ b/packages/vtk/src/bbvtkSphereList.h @@ -19,15 +19,15 @@ class bbvtk_EXPORT SphereList { BBTK_BLACK_BOX_INTERFACE(SphereList,bbtk::AtomicBlackBox); - BBTK_DECLARE_INPUT(Renderer ,vtkRenderer*); - BBTK_DECLARE_INPUT(lstPointX,std::vector); - BBTK_DECLARE_INPUT(lstPointY,std::vector); - BBTK_DECLARE_INPUT(lstPointZ,std::vector); - BBTK_DECLARE_INPUT(lstRadio ,std::vector); - BBTK_DECLARE_INPUT(Colour ,std::vector); - BBTK_DECLARE_INPUT(Transform ,vtkLinearTransform*); - - BBTK_DECLARE_INPUT(Opacity ,double); + BBTK_DECLARE_INPUT(Renderer ,vtkRenderer*); + BBTK_DECLARE_INPUT(lstPointX,std::vector); + BBTK_DECLARE_INPUT(lstPointY,std::vector); + BBTK_DECLARE_INPUT(lstPointZ,std::vector); + BBTK_DECLARE_INPUT(lstRadio ,std::vector); + BBTK_DECLARE_INPUT(Colour ,std::vector); + BBTK_DECLARE_INPUT(Opacity ,double); + BBTK_DECLARE_INPUT(Spacing ,std::vector); + BBTK_DECLARE_INPUT(Transform ,vtkLinearTransform*); BBTK_DECLARE_OUTPUT(ActorList,std::vector); @@ -41,17 +41,18 @@ class bbvtk_EXPORT SphereList }; BBTK_BEGIN_DESCRIBE_BLACK_BOX(SphereList,bbtk::AtomicBlackBox); -BBTK_NAME("SphereList"); -BBTK_AUTHOR("InfoTeam CREATIS"); -BBTK_DESCRIPTION("Builds a sphere list actor given four vectors (X, Y, Z, radius)."); -BBTK_CATEGORY(""); -BBTK_INPUT(SphereList,Renderer,"Renderer",vtkRenderer*,""); -BBTK_INPUT(SphereList,lstPointX,"List of X coordinates. Requirement: same size as vector Y and vector Z.",std::vector,""); -BBTK_INPUT(SphereList,lstPointY,"List of Y coordinates. Requirement: same size as vector X and vector Z.",std::vector,""); -BBTK_INPUT(SphereList,lstPointZ,"List of Z coordinates. Requirement: same size as vector X and vector Y.",std::vector,""); -BBTK_INPUT(SphereList,lstRadio,"List of Radio values",std::vector,""); -BBTK_INPUT(SphereList,Colour,"Colour RGB values for the spheres",std::vector,""); -BBTK_INPUT(SphereList,Opacity,"Opacity of the spheres",double,""); + BBTK_NAME("SphereList"); + BBTK_AUTHOR("InfoTeam CREATIS"); + BBTK_DESCRIPTION("Builds a sphere list actor given four vectors (X, Y, Z, radius)."); + BBTK_CATEGORY(""); + BBTK_INPUT(SphereList,Renderer,"Renderer",vtkRenderer*,""); + BBTK_INPUT(SphereList,lstPointX,"List of X coordinates. Requirement: same size as vector Y and vector Z.",std::vector,""); + BBTK_INPUT(SphereList,lstPointY,"List of Y coordinates. Requirement: same size as vector X and vector Z.",std::vector,""); + BBTK_INPUT(SphereList,lstPointZ,"List of Z coordinates. Requirement: same size as vector X and vector Y.",std::vector,""); + BBTK_INPUT(SphereList,lstRadio,"List of Radio values",std::vector,""); + BBTK_INPUT(SphereList,Colour,"Colour RGB values for the spheres (3 first values of the vector for the first sphere, following values for the second sphere, etc.)",std::vector,""); + BBTK_INPUT(SphereList,Opacity,"Opacity of the spheres",double,""); + BBTK_INPUT(SphereList,Spacing,"(default [1 1 1]) Spacing vector [sx sy sz]",std::vector,""); BBTK_INPUT(SphereList,Transform,"vtkTransform",vtkLinearTransform*,""); BBTK_OUTPUT(SphereList,ActorList,"List of the sphere actors",std::vector,"");