mirror of
https://github.com/raylib-zig/raylib-zig.git
synced 2026-02-21 16:54:36 +00:00
fix: remove const from parameters in Vector3Length functions
This commit is contained in:
parent
a5b3846731
commit
59f05d5bdc
@ -44,8 +44,8 @@ pub extern fn Vector3Scale(v: Vector3, scalar: f32) Vector3;
|
||||
pub extern fn Vector3Multiply(v1: Vector3, v2: Vector3) Vector3;
|
||||
pub extern fn Vector3CrossProduct(v1: Vector3, v2: Vector3) Vector3;
|
||||
pub extern fn Vector3Perpendicular(v: Vector3) Vector3;
|
||||
pub extern fn Vector3Length(v: const Vector3) f32;
|
||||
pub extern fn Vector3LengthSqr(v: const Vector3) f32;
|
||||
pub extern fn Vector3Length(v: Vector3) f32;
|
||||
pub extern fn Vector3LengthSqr(v: Vector3) f32;
|
||||
pub extern fn Vector3DotProduct(v1: Vector3, v2: Vector3) f32;
|
||||
pub extern fn Vector3Distance(v1: Vector3, v2: Vector3) f32;
|
||||
pub extern fn Vector3DistanceSqr(v1: Vector3, v2: Vector3) f32;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user