15 lines
229 B
C++
15 lines
229 B
C++
#pragma once
|
|
#include "PrescribedMotion.h"
|
|
|
|
namespace MbD {
|
|
class ZRotation : public PrescribedMotion
|
|
{
|
|
//
|
|
public:
|
|
ZRotation();
|
|
ZRotation(const char* str);
|
|
void initialize();
|
|
};
|
|
}
|
|
|