00001 00018 #include "Transformation/transformation_data.h" 00019 00020 Transformation_Data::Transformation_Data(Eigen::Matrix4d PTU_Frame, Eigen::Matrix4d LaserScan_Frame, double pan,double tilt) 00021 { 00022 this->PTU_Frame = PTU_Frame; 00023 this->LaserScan_Frame = LaserScan_Frame; 00024 this->pan = pan; 00025 this->tilt = tilt; 00026 } 00027 00028 00029 Transformation_Data::Transformation_Data() 00030 { 00031 this->PTU_Frame = *(new Eigen::Matrix4d); 00032 this->LaserScan_Frame = *(new Eigen::Matrix4d); 00033 this->pan = 0; 00034 this->tilt = 0; 00035 }