Files
solver/MbDCode/AngleJoint.h
2023-07-08 23:20:27 -06:00

18 lines
266 B
C++

#pragma once
#include "Joint.h"
namespace MbD {
class AngleJoint : public Joint
{
//theIzJz
public:
AngleJoint();
AngleJoint(const char* str);
void initializeGlobally() override;
double theIzJz = 0.0;
};
}