CenterOfMassTest.h 355 B

12345678910111213141516
  1. // SPDX-FileCopyrightText: 2021 Jorrit Rouwe
  2. // SPDX-License-Identifier: MIT
  3. #pragma once
  4. #include <Tests/Test.h>
  5. // Test that spawns various shapes with the center of mass not in the center of the object
  6. class CenterOfMassTest : public Test
  7. {
  8. public:
  9. JPH_DECLARE_RTTI_VIRTUAL(CenterOfMassTest)
  10. // See: Test
  11. virtual void Initialize() override;
  12. };