From 2a3e026ee0a2fa7d6a9876f81862e3c767d7e90b Mon Sep 17 00:00:00 2001 From: Aik-Siong Koh Date: Fri, 1 Dec 2023 00:36:06 -0700 Subject: [PATCH] move includes --- OndselSolver/ASMTAssembly.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/OndselSolver/ASMTAssembly.cpp b/OndselSolver/ASMTAssembly.cpp index 4e72a68..a2f9669 100644 --- a/OndselSolver/ASMTAssembly.cpp +++ b/OndselSolver/ASMTAssembly.cpp @@ -26,7 +26,6 @@ #include "ASMTFixedJoint.h" #include "ASMTGeneralMotion.h" #include "ASMTUniversalJoint.h" -#include "ExternalSystem.h" #include "ASMTPointInPlaneJoint.h" #include "ASMTPrincipalMassMarker.h" #include "ASMTForceTorque.h" @@ -34,11 +33,7 @@ #include "ASMTSimulationParameters.h" #include "ASMTAnimationParameters.h" #include "Part.h" -#include "ASMTRefPoint.h" -#include "ASMTRefCurve.h" -#include "ASMTRefSurface.h" #include "ASMTTime.h" -#include "SystemSolver.h" #include "ASMTItemIJ.h" #include "ASMTAngleJoint.h" #include "ASMTConstantVelocityJoint.h" @@ -56,6 +51,11 @@ #include "ASMTScrewJoint.h" #include "SimulationStoppingError.h" #include "ASMTKinematicIJ.h" +#include "ASMTRefPoint.h" +#include "ASMTRefCurve.h" +#include "ASMTRefSurface.h" +#include "ExternalSystem.h" +#include "SystemSolver.h" using namespace MbD;