BigVsSmallTest.h 517 B

12345678910111213141516171819202122
  1. // Jolt Physics Library (https://github.com/jrouwe/JoltPhysics)
  2. // SPDX-FileCopyrightText: 2021 Jorrit Rouwe
  3. // SPDX-License-Identifier: MIT
  4. #pragma once
  5. #include <Tests/Test.h>
  6. class BigVsSmallTest : public Test
  7. {
  8. public:
  9. JPH_DECLARE_RTTI_VIRTUAL(JPH_NO_EXPORT, BigVsSmallTest)
  10. // Description of the test
  11. virtual const char *GetDescription() const override
  12. {
  13. return "A small box falling on a big triangle to test for numerical precision errors.";
  14. }
  15. // See: Test
  16. virtual void Initialize() override;
  17. };