Files
solver/MbDCode/CylindricalJoint.h
2023-05-20 17:55:13 -06:00

16 lines
342 B
C++

#pragma once
#include "Joint.h"
namespace MbD {
class CylindricalJoint : public Joint
{
//frmI frmJ constraints friction
public:
static std::shared_ptr<CylindricalJoint> Create(const char* name);
CylindricalJoint();
CylindricalJoint(const char* str);
void initializeGlobally();
};
}