提交依赖与构建产物

This commit is contained in:
wangdequan
2026-06-27 09:25:04 -04:00
parent 2817cba164
commit f0e96308d2
1300 changed files with 844236 additions and 0 deletions

View File

@@ -0,0 +1,55 @@
/*****************************************************************************
* \file
* provides I/O operations on FrameVels classes
*
* \author
* Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven
*
* \version
* ORO_Geometry V2
*
* \par History
* - $log$
*
* \par Release
* $Id: rframes_io.h,v 1.1.1.1 2002/08/26 14:14:21 rmoreas Exp $
* $Name: $
****************************************************************************/
#ifndef KDL_FRAMESVEL_IO
#define KDL_FRAMESVEL_IO
#include "utilities/utility_io.h"
#include "utilities/rall1d_io.h"
#include "frames_io.hpp"
namespace KDL {
// Output...
inline std::ostream& operator << (std::ostream& os,const VectorVel& r) {
os << "{" << r.p << "," << r.v << "}" << std::endl;
return os;
}
inline std::ostream& operator << (std::ostream& os,const RotationVel& r) {
os << "{" << std::endl << r.R << "," <<std::endl << r.w << std::endl << "}" << std::endl;
return os;
}
inline std::ostream& operator << (std::ostream& os,const FrameVel& r) {
os << "{" << std::endl << r.M << "," << std::endl << r.p << std::endl << "}" << std::endl;
return os;
}
inline std::ostream& operator << (std::ostream& os,const TwistVel& r) {
os << "{" << std::endl << r.vel << "," << std::endl << r.rot << std::endl << "}" << std::endl;
return os;
}
} // namespace Frame
#endif