changes to class detection

This commit is contained in:
John Dupuy
2023-09-27 15:13:22 -05:00
parent 4b3d676f30
commit fa2deac10f
10 changed files with 42 additions and 32 deletions

View File

@@ -26,17 +26,17 @@ void runSpMat();
int main()
{
ASMTAssembly::runFile("piston.asmt");
ASMTAssembly::runFile("00backhoe.asmt");
ASMTAssembly::runFile("circular.asmt");
ASMTAssembly::runFile("cirpendu.asmt"); //Under constrained. Testing ICKine.
ASMTAssembly::runFile("engine1.asmt");
ASMTAssembly::runFile("fourbar.asmt");
ASMTAssembly::runFile("fourbot.asmt");
ASMTAssembly::runFile("wobpump.asmt");
// ASMTAssembly::runFile("piston.asmt");
// ASMTAssembly::runFile("00backhoe.asmt");
// ASMTAssembly::runFile("circular.asmt");
// ASMTAssembly::runFile("cirpendu.asmt"); //Under constrained. Testing ICKine.
// ASMTAssembly::runFile("engine1.asmt");
// ASMTAssembly::runFile("fourbar.asmt");
// ASMTAssembly::runFile("fourbot.asmt");
// ASMTAssembly::runFile("wobpump.asmt");
auto cadSystem = std::make_shared<CADSystem>();
cadSystem->runOndselPiston();
// cadSystem->runOndselPiston();
cadSystem->runPiston();
runSpMat();
}