18 lines
193 B
C++
18 lines
193 B
C++
#pragma once
|
|
|
|
#include "Joint.h"
|
|
|
|
namespace MbD {
|
|
class InLineJoint : public Joint
|
|
{
|
|
//
|
|
public:
|
|
InLineJoint();
|
|
InLineJoint(const char* str);
|
|
|
|
void createInLineConstraints();
|
|
|
|
};
|
|
}
|
|
|