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

16 lines
289 B
C++

#pragma once
#include "InLineJoint.h"
namespace MbD {
class CylindricalJoint : public InLineJoint
{
//frmI frmJ constraints friction
public:
CylindricalJoint();
CylindricalJoint(const char* str);
void initializeGlobally() override;
};
}