Files
solver/MbDCode/PosVelAccData.cpp
2023-08-08 18:51:19 -06:00

26 lines
985 B
C++

/***************************************************************************
* Copyright (c) 2023 Ondsel, Inc. *
* *
* This file is part of OndselSolver. *
* *
* See LICENSE file for details about copyright. *
***************************************************************************/
#include <ostream>
#include "PosVelAccData.h"
using namespace MbD;
std::ostream& PosVelAccData::printOn(std::ostream& s) const
{
s << "refData = " << *refData << std::endl;
s << "rFfF = " << *rFfF << std::endl;
s << "vFfF = " << *vFfF << std::endl;
s << "omeFfF = " << *omeFfF << std::endl;
s << "aFfF = " << *aFfF << std::endl;
s << "alpFfF = " << *alpFfF << std::endl;
s << "aAFf = " << *aAFf;
return s;
}