Kaynağa Gözat

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

pull/4523/head
Gael Pérez 2 ay önce
işlemeyi yapan: GitHub
ebeveyn
işleme
415a98965a
Veri tabanında bu imza için bilinen anahtar bulunamadı GPG Anahtar Kimliği: B5690EEEBB952194
1 değiştirilmiş dosya ile 8 ekleme ve 0 silme
  1. +8
    -0
      src/raymath.h

+ 8
- 0
src/raymath.h Dosyayı Görüntüle

@ -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)
{

Yükleniyor…
İptal
Kaydet