SRB2/src/m_vector.c
2024-01-29 23:55:12 -03:00

53 lines
1.4 KiB
C

// SONIC ROBO BLAST 2
//-----------------------------------------------------------------------------
// Copyright (C) 2024 by Sonic Team Junior.
// Copyright (C) 2009 by Stephen McGranahan.
//
// This program is free software distributed under the
// terms of the GNU General Public License, version 2.
// See the 'LICENSE' file for more details.
//-----------------------------------------------------------------------------
/// \file m_vector.c
/// \brief Basic vector functions
#include "doomdef.h"
#include "m_vector.h"
void DVector3_Load(dvector3_t *vec, double x, double y, double z)
{
vec->x = x;
vec->y = y;
vec->z = z;
}
double DVector3_Magnitude(const dvector3_t *a_normal)
{
double xs = a_normal->x * a_normal->x;
double ys = a_normal->y * a_normal->y;
double zs = a_normal->z * a_normal->z;
return sqrt(xs + ys + zs);
}
double DVector3_Normalize(dvector3_t *a_normal)
{
double magnitude = DVector3_Magnitude(a_normal);
a_normal->x /= magnitude;
a_normal->y /= magnitude;
a_normal->z /= magnitude;
return magnitude;
}
void DVector3_Negate(dvector3_t *a_o)
{
a_o->x = -a_o->x;
a_o->y = -a_o->y;
a_o->z = -a_o->z;
}
void DVector3_Cross(const dvector3_t *a_1, const dvector3_t *a_2, dvector3_t *a_o)
{
a_o->x = (a_1->y * a_2->z) - (a_1->z * a_2->y);
a_o->y = (a_1->z * a_2->x) - (a_1->x * a_2->z);
a_o->z = (a_1->x * a_2->y) - (a_1->y * a_2->x);
}