19 lines
769 B
C++
19 lines
769 B
C++
/***************************************************************************
|
|
* Copyright (c) 2023 Ondsel, Inc. *
|
|
* *
|
|
* This file is part of OndselSolver. *
|
|
* *
|
|
* See LICENSE file for details about copyright. *
|
|
***************************************************************************/
|
|
#include <fstream>
|
|
|
|
#include "ASMTPerpendicularJoint.h"
|
|
#include "PerpendicularJoint.h"
|
|
|
|
using namespace MbD;
|
|
|
|
std::shared_ptr<Joint> MbD::ASMTPerpendicularJoint::mbdClassNew()
|
|
{
|
|
return CREATE<PerpendicularJoint>::With();
|
|
}
|