]> Creatis software - bbtk.git/blobdiff - packages/vtk/src/bbvtkText3D.h
no message
[bbtk.git] / packages / vtk / src / bbvtkText3D.h
index 0afce281ae919d5abaa7cc5f3b2066e4d3666ad3..0dbe84f7fc400d6767418732e56701a40b50627d 100644 (file)
@@ -9,6 +9,8 @@
 
 #include "vtkProp3D.h"
 #include "vtkRenderer.h"
+#include "vtkLinearTransform.h"
+
 
 namespace bbvtk
 {
@@ -27,6 +29,8 @@ class bbvtk_EXPORT Text3D
        BBTK_DECLARE_INPUT(Z,int);
        BBTK_DECLARE_INPUT(Colour,std::vector<double>);
        BBTK_DECLARE_INPUT(Renderer,vtkRenderer*);
+       BBTK_DECLARE_INPUT(Transform,vtkLinearTransform*);
+       
   BBTK_DECLARE_OUTPUT(Out,vtkProp3D*);
   BBTK_PROCESS(Process);
   void Process();
@@ -47,6 +51,7 @@ BBTK_CATEGORY("");
        BBTK_INPUT(Text3D,Z,"position Z",int,"");
        BBTK_INPUT(Text3D,Colour,"Colour vector RGB",std::vector<double>,"");
        BBTK_INPUT(Text3D,Renderer,"vtk Renderer",vtkRenderer*,"");
+       BBTK_INPUT(Text3D,Transform,"",vtkLinearTransform*,"");
 
        BBTK_OUTPUT(Text3D,Out,"vtk Actor",vtkProp3D*,"");