Files
solver/MbDCode/ZRotation.h
2023-07-16 22:00:07 -06:00

17 lines
242 B
C++

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