Enum IntegrationMethods
Defined in File MechanizationOptions.hpp
Enum Documentation
Method for velocity integration.
Values:
Use rectangular integration \( v_0 * \delta t \) to calculate new position.
Use trapezoidal \( \frac{(v_0 + v_1)\delta t}{2} \) to calculate new position.
Use Simpson’s rule \( \frac{(v_prev + 4 * v_0 + v_1)\delta t}{6} \) to calculate new position.