ASMT output, MBDyn input and output done.
This commit is contained in:
@@ -26,8 +26,13 @@ Symsptr MbD::Cosine::differentiateWRTx()
|
||||
return std::make_shared<Negative>(std::make_shared<Sine>(xx));
|
||||
}
|
||||
|
||||
Symsptr MbD::Cosine::copyWith(Symsptr arg)
|
||||
{
|
||||
return std::make_shared<Cosine>(arg);
|
||||
}
|
||||
|
||||
std::ostream& MbD::Cosine::printOn(std::ostream& s) const
|
||||
{
|
||||
s << "cos(" << xx << ")";
|
||||
s << "cos(" << *xx << ")";
|
||||
return s;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user