|
@@ -511,7 +511,7 @@ void Scene::dispatchBeginContactCallbacks( void )
|
|
|
dSprintf(miscInfoBufferA, sizeof(miscInfoBufferA),
|
|
|
"%d %d %0.4f %0.4f %0.4f %0.4f %0.4f %0.4f %0.4f %0.4f %0.4f %0.4f",
|
|
|
shapeIndexA, shapeIndexB,
|
|
|
- normal.x, normal.y,
|
|
|
+ -normal.x, -normal.y,
|
|
|
point1.x, point1.y,
|
|
|
normalImpulse1,
|
|
|
tangentImpulse1,
|
|
@@ -522,7 +522,7 @@ void Scene::dispatchBeginContactCallbacks( void )
|
|
|
dSprintf(miscInfoBufferB, sizeof(miscInfoBufferB),
|
|
|
"%d %d %0.4f %0.4f %0.4f %0.4f %0.4f %0.4f %0.4f %0.4f %0.4f %0.4f",
|
|
|
shapeIndexB, shapeIndexA,
|
|
|
- -normal.x, -normal.y,
|
|
|
+ normal.x, normal.y,
|
|
|
point1.x, point1.y,
|
|
|
normalImpulse1,
|
|
|
tangentImpulse1,
|
|
@@ -535,7 +535,7 @@ void Scene::dispatchBeginContactCallbacks( void )
|
|
|
dSprintf(miscInfoBufferA, sizeof(miscInfoBufferA),
|
|
|
"%d %d %0.4f %0.4f %0.4f %0.4f %0.4f %0.4f",
|
|
|
shapeIndexA, shapeIndexB,
|
|
|
- normal.x, normal.y,
|
|
|
+ -normal.x, -normal.y,
|
|
|
point1.x, point1.y,
|
|
|
normalImpulse1,
|
|
|
tangentImpulse1 );
|
|
@@ -543,7 +543,7 @@ void Scene::dispatchBeginContactCallbacks( void )
|
|
|
dSprintf(miscInfoBufferB, sizeof(miscInfoBufferB),
|
|
|
"%d %d %0.4f %0.4f %0.4f %0.4f %0.4f %0.4f",
|
|
|
shapeIndexB, shapeIndexA,
|
|
|
- -normal.x, -normal.y,
|
|
|
+ normal.x, normal.y,
|
|
|
point1.x, point1.y,
|
|
|
normalImpulse1,
|
|
|
tangentImpulse1);
|