Files
solver/MbDCode/PrescribedMotion.h
2023-05-27 21:43:09 -06:00

25 lines
496 B
C++

#pragma once
#include "Joint.h"
#include "Symbolic.h"
namespace MbD {
class PrescribedMotion : public Joint
{
//xBlk yBlk zBlk phiBlk theBlk psiBlk
public:
PrescribedMotion();
PrescribedMotion(const char* str);
void initialize();
void connectsItoJ(EndFrmcptr frmI, EndFrmcptr frmJ) override;
Symsptr xBlk;
Symsptr yBlk;
Symsptr zBlk;
Symsptr phiBlk;
Symsptr theBlk;
Symsptr psiBlk;
};
}