Files
solver/MbDCode/PrescribedMotion.h
2023-05-05 19:01:53 -06:00

16 lines
366 B
C++

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