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

16 lines
232 B
C++

#pragma once
#include "PrescribedMotion.h"
namespace MbD {
class ZRotation : public PrescribedMotion
{
//
public:
ZRotation();
ZRotation(const char* str);
void initializeGlobally() override;
void initMotions();
};
}