Set the number of iterations for the position constraint solver * @param nbIterations Number of iterations for the position solver */
| 958 | * @param nbIterations Number of iterations for the position solver |
| 959 | */ |
| 960 | void PhysicsWorld::setNbIterationsPositionSolver(uint32 nbIterations) { |
| 961 | |
| 962 | mNbPositionSolverIterations = nbIterations; |
| 963 | |
| 964 | RP3D_LOG(mConfig.worldName, Logger::Level::Information, Logger::Category::World, |
| 965 | "Physics World: Set nb iterations position solver to " + std::to_string(nbIterations), __FILE__, __LINE__); |
| 966 | } |
| 967 | |
| 968 | // Set the gravity vector of the world |
| 969 | /** |
no outgoing calls
no test coverage detected