Assembly: Simulation implementation

This commit is contained in:
Aik-Siong Koh
2024-08-28 10:01:11 -06:00
committed by Max Wilfinger
parent 4a2edae421
commit 3326c33d83
28 changed files with 6187 additions and 15 deletions

View File

@@ -33,6 +33,7 @@
#include "BomGroup.h"
#include "JointGroup.h"
#include "ViewGroup.h"
#include "SimulationGroup.h"
namespace Assembly
@@ -68,6 +69,7 @@ PyMOD_INIT_FUNC(AssemblyApp)
Assembly::BomGroup ::init();
Assembly::JointGroup ::init();
Assembly::ViewGroup ::init();
Assembly::SimulationGroup ::init();
PyMOD_Return(mod);
}