git-svn-id: https://free-cad.svn.sourceforge.net/svnroot/free-cad/trunk@5000 e8eeb9e2-ec13-0410-a4a9-efa5cf37419d
33 lines
623 B
C++
33 lines
623 B
C++
/*****************************************************************************
|
|
* \author
|
|
* Erwin Aertbelien, Div. PMA, Dep. of Mech. Eng., K.U.Leuven
|
|
*
|
|
* \version
|
|
* LRL V0.2
|
|
*
|
|
* \par History
|
|
* - $log$
|
|
*
|
|
* \par Release
|
|
* $Id: trajectory_stationary.cpp 22 2004-09-21 08:58:54Z eaertbellocal $
|
|
* $Name: $
|
|
****************************************************************************/
|
|
|
|
|
|
#include "trajectory_stationary.hpp"
|
|
|
|
namespace KDL {
|
|
|
|
using namespace std;
|
|
|
|
|
|
void Trajectory_Stationary::Write(ostream& os) const {
|
|
os << "STATIONARY[ " << duration << endl;
|
|
os << pos << endl;
|
|
os << "]";
|
|
}
|
|
|
|
|
|
}
|
|
|