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

15 lines
259 B
C++

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