16 lines
366 B
C++
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;
|
|
};
|
|
}
|
|
|