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

18 lines
202 B
C++

#pragma once
#include "Joint.h"
namespace MbD {
class CompoundJoint : public Joint
{
//distanceIJ
public:
CompoundJoint();
CompoundJoint(const char* str);
double distanceIJ = 0.0;
};
}