【打印参数函数】
| 220 | |
| 221 | // 【打印参数函数】 |
| 222 | void Controller_Test::printf_param() |
| 223 | { |
| 224 | cout <<">>>>>>>>>>>>>>>>>>>>>>>>>Controller_Test Parameter <<<<<<<<<<<<<<<<<<<<<<" <<endl; |
| 225 | cout <<"Circle Shape: " <<endl; |
| 226 | cout <<"circle_center : " << circle_center[0] <<" [m] "<< circle_center[1] <<" [m] "<< circle_center[2] <<" [m] "<<endl; |
| 227 | cout <<"circle_radius : "<< circle_radius <<" [m] " <<"linear_vel : "<< linear_vel <<" [m/s] "<<"direction : "<< direction << endl; |
| 228 | |
| 229 | cout <<"Eight Shape: " <<endl; |
| 230 | cout <<"eight_origin_ : "<< eight_origin_[0] <<" [m] "<< eight_origin_[1] <<" [m] "<< eight_origin_[2] <<" [m] "<<endl; |
| 231 | cout <<"eight_omega_ : "<< eight_omega_ <<" [rad/s] " << "radial : "<< radial << endl; |
| 232 | |
| 233 | cout <<"Step: " <<endl; |
| 234 | cout <<"step_length : "<< step_length << " [m] step_interval : "<< step_interval << " [s] "<<endl; |
| 235 | } |
| 236 | |
| 237 | |
| 238 | #endif |