瀏覽代碼

Merge pull request #1 from ProfJski/ProfJski-patch-1

Update CheckCollisionSpheres() to avoid sqrt
pull/832/head
ProfJski 6 年之前
committed by GitHub
父節點
當前提交
4330b098f3
沒有發現已知的金鑰在資料庫的簽署中 GPG 金鑰 ID: 4AEE18F83AFDEB23
共有 1 個檔案被更改,包括 1 行新增11 行删除
  1. +1
    -11
      src/models.c

+ 1
- 11
src/models.c 查看文件

@ -2472,17 +2472,7 @@ void DrawBoundingBox(BoundingBox box, Color color)
// Detect collision between two spheres
bool CheckCollisionSpheres(Vector3 centerA, float radiusA, Vector3 centerB, float radiusB)
{
bool collision = false;
float dx = centerA.x - centerB.x; // X distance between centers
float dy = centerA.y - centerB.y; // Y distance between centers
float dz = centerA.z - centerB.z; // Y distance between centers
float distance = sqrtf(dx*dx + dy*dy + dz*dz); // Distance between centers
if (distance <= (radiusA + radiusB)) collision = true;
return collision;
return Vector3DotProduct(Vector3Subtract(B,A),Vector3Subtract(B,A))<=(RadA+RadB)*(RadA+RadB);
}
// Detect collision between two boxes

Loading…
取消
儲存