Reverted an attempt to stabilise edge detection between polyhedrons

This commit is contained in:
Diren D Bharwani 2023-01-23 03:03:40 +08:00
parent 5730381302
commit 4ed7aa3aed
2 changed files with 5 additions and 5 deletions

View File

@ -45,7 +45,7 @@
NumberOfChildren: 0
Components:
Transform Component:
Translate: {x: 0, y: 7.5, z: 0}
Translate: {x: 2, y: 7.5, z: 0}
Rotate: {x: -0, y: 0, z: 0.785398185}
Scale: {x: 1, y: 1, z: 1}
IsActive: true
@ -60,7 +60,7 @@
Interpolate: true
Sleeping Enabled: true
Freeze Position X: false
Freeze Position Y: false
Freeze Position Y: true
Freeze Position Z: false
Freeze Rotation X: false
Freeze Rotation Y: false
@ -182,8 +182,8 @@
NumberOfChildren: 0
Components:
Transform Component:
Translate: {x: 0, y: 2, z: 3}
Rotate: {x: 0, y: 0.785398185, z: 0}
Translate: {x: 0, y: 7, z: 0}
Rotate: {x: 0, y: 0, z: 0.785398185}
Scale: {x: 0.999990404, y: 0.999994457, z: 0.999985337}
IsActive: true
RigidBody Component:

View File

@ -364,7 +364,7 @@ namespace SHADE
const float DENOMINATOR = AV_DOT_VB - AV_DOT_VA * A2_OVER_A1;
// We clamp it because the factor cannot be beyond [0,1] as it would be beyond the segment if it was so.
const float R = std::clamp(NUMERATOR / DENOMINATOR, 0.0f, 1.0f);
const float R = DENOMINATOR == 0.0f ? NUMERATOR : NUMERATOR / DENOMINATOR;
// Just take a point from A since it's A -> B
return TAIL_A + R * VA;