Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/ode/ode-0.9/tests/colliders/box_sphere.cpp @ 216

Last change on this file since 216 was 216, checked in by mathiask, 16 years ago

[Physik] add ode-0.9

File size: 250 bytes
Line 
1#include "CppTestHarness.h"
2#include "ode/ode.h"
3
4TEST(BoxSphereIntersection)
5{
6        dGeomID box    = dCreateBox(NULL, 1.0f, 1.0f, 1.0f);
7        dGeomID sphere = dCreateSphere(NULL, 1.0f);
8
9        CHECK_EQUAL(1.0, 1.0);
10
11        dGeomDestroy(box);
12        dGeomDestroy(sphere);
13}
Note: See TracBrowser for help on using the repository browser.