Files
solver/MbDCode/ZRotation.h
2023-05-05 19:01:53 -06:00

15 lines
229 B
C++

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