瀏覽代碼

update raymath.h: add Vector2CrossProduct function (#4520)

pull/4523/head
Gael Pérez 2 月之前
committed by GitHub
父節點
當前提交
415a98965a
沒有發現已知的金鑰在資料庫的簽署中 GPG Key ID: B5690EEEBB952194
共有 1 個文件被更改,包括 8 次插入0 次删除
  1. +8
    -0
      src/raymath.h

+ 8
- 0
src/raymath.h 查看文件

@ -304,6 +304,14 @@ RMAPI float Vector2DotProduct(Vector2 v1, Vector2 v2)
return result;
}
// Calculate two vectors cross product
RMAPI float Vector2CrossProduct(Vector2 v1, Vector2 v2)
{
float result = (v1.x*v2.y - v1.y*v2.x);
return result;
}
// Calculate distance between two vectors
RMAPI float Vector2Distance(Vector2 v1, Vector2 v2)
{

Loading…
取消
儲存