From e704ec994219540b71da323a61ffa930f80ce492 Mon Sep 17 00:00:00 2001 From: Aetias <144526980+AetiasHax@users.noreply.github.com> Date: Mon, 11 May 2026 20:34:17 +0200 Subject: ActorCharacter OK (#162) * ActorCharacter 93% * ActorCharacter 98% * ActorCharacter OK * Fix broken matches --- libs/nds/include/nds/math.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'libs') diff --git a/libs/nds/include/nds/math.h b/libs/nds/include/nds/math.h index c021bc0f..3ad44511 100644 --- a/libs/nds/include/nds/math.h +++ b/libs/nds/include/nds/math.h @@ -145,6 +145,12 @@ inline void Vec3p_Copy(Vec3p *vec, Vec3p *out) { out->z = vec->z; } +inline void Vec3p_Set(Vec3p *vec, q20 x, q20 y, q20 z) { + vec->x = x; + vec->y = y; + vec->z = z; +} + void Mat2p_InitIdentity(Mat2p *m); void Mat2p_InitRotation(Mat2p *m, q20 sin, q20 cos); void Mat2p_Multiply(Mat2p *a, Mat2p *b, Mat2p *out); -- cgit v1.2.3