MCPcopy Create free account
hub / github.com/PointCloudLibrary/pcl / print_Isometry3d

Function print_Isometry3d

simulation/tools/sim_viewer.cpp:318–326  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

316}
317
318void
319print_Isometry3d(Eigen::Isometry3d pose, std::stringstream& ss)
320{
321 Eigen::Vector3d t(pose.translation());
322 Eigen::Quaterniond r(pose.rotation());
323 ss << t[0] << ", " << t[1] << ", " << t[2] << " | " << r.w() << ", " << r.x() << ", "
324 << r.y() << ", " << r.z();
325 // std::cout << ss.str() << "q\n";
326}
327
328void
329simulate_callback(const pcl::visualization::KeyboardEvent& event, void* viewer_void)

Callers 1

simulate_callbackFunction · 0.85

Calls 1

xMethod · 0.45

Tested by

no test coverage detected