19 lines
234 B
C++
19 lines
234 B
C++
#pragma once
|
|
|
|
#include "Joint.h"
|
|
|
|
namespace MbD {
|
|
class AtPointJoint : public Joint
|
|
{
|
|
//
|
|
public:
|
|
AtPointJoint();
|
|
AtPointJoint(const char* str);
|
|
|
|
void createAtPointConstraints();
|
|
|
|
|
|
};
|
|
}
|
|
|