source:
code/branches/ode/ode-0.9/tests/colliders/box_sphere.cpp
@
266
Last change on this file since 266 was 216, checked in by mathiask, 17 years ago | |
---|---|
File size: 250 bytes |
Rev | Line | |
---|---|---|
[216] | 1 | #include "CppTestHarness.h" |
2 | #include "ode/ode.h" | |
3 | ||
4 | TEST(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.