Rackscrew.asmt now runs.

Other changes to ignore assembly.asmt
git cleanup
This commit is contained in:
Aik-Siong Koh
2023-12-03 20:30:53 -07:00
committed by Brad Collette
parent 5671994528
commit 3901de64a6
19 changed files with 369 additions and 395 deletions

View File

@@ -0,0 +1,18 @@
/***************************************************************************
* Copyright (c) 2023 Ondsel, Inc. *
* *
* This file is part of OndselSolver. *
* *
* See LICENSE file for details about copyright. *
***************************************************************************/
#include <fstream>
#include "ASMTRevRevJoint.h"
#include "RevRevJoint.h"
using namespace MbD;
std::shared_ptr<Joint> MbD::ASMTRevRevJoint::mbdClassNew()
{
return CREATE<RevRevJoint>::With();
}