📄 testsims.h
字号:
/** @file StaticBox.h
@brief Contains function prototypes for all the test sim setup functions.
*/
#ifndef __TestSims_H__
#define __TestSims_H__
// Include prerequisites
#include "Prerequisites.h"
/** A test breakage callback.
*/
void testBreakageCallback(PhysicalObject* oldObject, Element* brokenElement,
DynamicFragment* newObject);
/** A test collision callback.
*/
void testCollisionCallback(const CollisionInfo& info);
/** Sets up the first test simulation.
*/
DynamicSphere* setupTestSim1(SceneNode* rootNode);
/** Sets up the second test simulation.
*/
DynamicSphere* setupTestSim2(SceneNode* rootNode);
/** Sets up the third test simulation.
*/
DynamicSphere* setupTestSim3(SceneNode* rootNode);
/** Sets up the fourth test simulation.
*/
DynamicSphere* setupTestSim4(SceneNode* rootNode);
/** Sets up the fifth test simulation.
*/
DynamicSphere* setupTestSim5(SceneNode* rootNode);
/** Sets up the sixth test simulation.
*/
DynamicSphere* setupTestSim6(SceneNode* rootNode);
/** Sets up the seventh test simulation.
*/
DynamicSphere* setupTestSim7(SceneNode* rootNode);
/** Sets up the eighth test simulation.
*/
DynamicSphere* setupTestSim8(SceneNode* rootNode);
/** Sets up the ninth test simulation.
*/
DynamicSphere* setupTestSim9(SceneNode* rootNode);
/** Sets up the zeroth test simulation.
*/
DynamicSphere* setupTestSim0(SceneNode* rootNode);
// TestSims.h
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -