aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/ode-0.9/tests/colliders/box_sphere.cpp
blob: 4bfead7ed1463b06ec7b083cab3c28471e699de8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "CppTestHarness.h"
#include "ode/ode.h"

TEST(BoxSphereIntersection)
{
	dGeomID box    = dCreateBox(NULL, 1.0f, 1.0f, 1.0f);
	dGeomID sphere = dCreateSphere(NULL, 1.0f);

	CHECK_EQUAL(1.0, 1.0);

	dGeomDestroy(box);
	dGeomDestroy(sphere);
}