#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 frmI, std::shared_ptr frmJ) override; std::shared_ptr xBlk; std::shared_ptr yBlk; std::shared_ptr zBlk; std::shared_ptr phiBlk; std::shared_ptr theBlk; std::shared_ptr psiBlk; }; }