Epok Engine

PSYQO SDK

psyqo::SoftMath::normalizeVec3

Function · 1 overload

Function

Normalizes a 3D vector.

Belongs to
psyqo::SoftMath
Header
soft-math.hh
Overloads
1

Declaration

Declaration
void normalizeVec3(Vec3 *v)

Normalizes a 3D vector.

ParameterTypeMeaning
vVec3 *The vector to normalize.

Returns: Nothing (void).

Example

C++ example
#include "psyqo/soft-math.hh"

// Assume these named values have been initialized with valid data:
// Vec3 * v

psyqo::SoftMath::normalizeVec3(v);

Why use it

It provides direct, allocation-conscious access to the soft math module. No exception-based error path is implied by the signature.

Trade-offs and warnings

Pointer/reference arguments are borrowed unless the source contract says otherwise; keep them valid for the complete operation and never assume null is accepted.

Declared in https://github.com/pcsx-redux/nugget/blob/6186b131aacc5853a9161fb076ed34ffe504552d/psyqo/soft-math.hh:228

Related members