![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /usr/share/emscripten/tests/box2d/Testbed/Tests/ |
Upload File : |
#ifndef AddPair_H #define AddPair_H class AddPair : public Test { public: AddPair() { m_world->SetGravity(b2Vec2(0.0f,0.0f)); { b2CircleShape shape; shape.m_p.SetZero(); shape.m_radius = 0.1f; float minX = -6.0f; float maxX = 0.0f; float minY = 4.0f; float maxY = 6.0f; for (int32 i = 0; i < 400; ++i) { b2BodyDef bd; bd.type = b2_dynamicBody; bd.position = b2Vec2(RandomFloat(minX,maxX),RandomFloat(minY,maxY)); b2Body* body = m_world->CreateBody(&bd); body->CreateFixture(&shape, 0.01f); } } { b2PolygonShape shape; shape.SetAsBox(1.5f, 1.5f); b2BodyDef bd; bd.type = b2_dynamicBody; bd.position.Set(-40.0f,5.0f); bd.bullet = true; b2Body* body = m_world->CreateBody(&bd); body->CreateFixture(&shape, 1.0f); body->SetLinearVelocity(b2Vec2(150.0f, 0.0f)); } } static Test* Create() { return new AddPair; } }; #endif