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

19 lines
221 B
C++

#pragma once
#include "Joint.h"
namespace MbD {
class InPlaneJoint : public Joint
{
//offset
public:
InPlaneJoint();
InPlaneJoint(const char* str);
void createInPlaneConstraint();
double offset;
};
}