Files
CosmicEngine/lib/All/JoltPhysics/Samples/Tests/General/IslandTest.h

23 lines
583 B
C
Raw Normal View History

// Jolt Physics Library (https://github.com/jrouwe/JoltPhysics)
// SPDX-FileCopyrightText: 2021 Jorrit Rouwe
// SPDX-License-Identifier: MIT
#pragma once
#include <Tests/Test.h>
class IslandTest : public Test
{
public:
JPH_DECLARE_RTTI_VIRTUAL(JPH_NO_EXPORT, IslandTest)
// Description of the test
virtual const char *GetDescription() const override
{
return "Creates a number of disjoint piles of blocks to see if the islands are properly determined and that the simulation spreads them out over multiple CPUs.";
}
// See: Test
virtual void Initialize() override;
};