//===== // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost) //===== #ifndef __bbcreaVtkPointRotation_h_INCLUDED__ #define __bbcreaVtkPointRotation_h_INCLUDED__ #include "bbcreaVtk_EXPORT.h" #include "bbtkAtomicBlackBox.h" #include "iostream" namespace bbcreaVtk { class bbcreaVtk_EXPORT PointRotation : public bbtk::AtomicBlackBox { BBTK_BLACK_BOX_INTERFACE(PointRotation,bbtk::AtomicBlackBox); //===== // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost) //===== BBTK_DECLARE_INPUT(Center,std::vector); BBTK_DECLARE_INPUT(Size,double); BBTK_DECLARE_INPUT(Angle,double); BBTK_DECLARE_OUTPUT(Out,std::vector); BBTK_PROCESS(Process); void Process(); //===== // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost) //===== }; BBTK_BEGIN_DESCRIBE_BLACK_BOX(PointRotation,bbtk::AtomicBlackBox); BBTK_NAME("PointRotation"); BBTK_AUTHOR("Info-Dev"); BBTK_DESCRIPTION("Point Rotation with a center reference"); BBTK_CATEGORY("empty"); BBTK_INPUT(PointRotation,Center,"Center of rotation [x y z]",std::vector,""); BBTK_INPUT(PointRotation,Size,"Size of the segment (default 1)",double,""); BBTK_INPUT(PointRotation,Angle,"Angle in degrees (default 0)",double,""); BBTK_OUTPUT(PointRotation,Out,"End point of the rotated segment",std::vector,""); BBTK_END_DESCRIBE_BLACK_BOX(PointRotation); //===== // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost) //===== } // EO namespace bbcreaVtk #endif // __bbcreaVtkPointRotation_h_INCLUDED__