ActiveEdgesTest.h 394 B

12345678910111213141516
  1. // SPDX-FileCopyrightText: 2021 Jorrit Rouwe
  2. // SPDX-License-Identifier: MIT
  3. #pragma once
  4. #include <Tests/Test.h>
  5. // This test checks if coplanar triangles are properly merged for the simulation in order to avoid collisions with invisible edges.
  6. class ActiveEdgesTest : public Test
  7. {
  8. public:
  9. JPH_DECLARE_RTTI_VIRTUAL(ActiveEdgesTest)
  10. // See: Test
  11. virtual void Initialize() override;
  12. };