Files
solver/OndselSolver/RevRevJoint.h
Aik-Siong Koh 5907363be7 rackscrew.asmt now runs.
CMakeLists.txt

gitignore

rackscrew.asmt now runs.

CMakeLists.txt

remove cached assembly.asmt
2023-12-13 14:52:16 -06:00

26 lines
754 B
C++

/***************************************************************************
* Copyright (c) 2023 Ondsel, Inc. *
* *
* This file is part of OndselSolver. *
* *
* See LICENSE file for details about copyright. *
***************************************************************************/
#pragma once
#include "CompoundJoint.h"
namespace MbD {
class RevRevJoint : public CompoundJoint
{
//
public:
RevRevJoint();
RevRevJoint(const char* str);
void initializeGlobally() override;
};
}