Update to Zig 0.14.0 and raylib 5.6-dev
This commit is contained in:
parent
ae7cb3fa93
commit
1b6a05ca3b
15 changed files with 586 additions and 321 deletions
|
|
@ -83,6 +83,10 @@ pub fn vector2DotProduct(v1: Vector2, v2: Vector2) f32 {
|
|||
return cdef.Vector2DotProduct(v1, v2);
|
||||
}
|
||||
|
||||
pub fn vector2CrossProduct(v1: Vector2, v2: Vector2) f32 {
|
||||
return cdef.Vector2CrossProduct(v1, v2);
|
||||
}
|
||||
|
||||
pub fn vector2Distance(v1: Vector2, v2: Vector2) f32 {
|
||||
return cdef.Vector2Distance(v1, v2);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue