NSMBW-Decomp
A decompilation of New Super Mario Bros. Wii
Loading...
Searching...
No Matches
c_m3d.hpp
Go to the documentation of this file.
1#pragma once
2#include <types.h>
3#include <lib/rvl/mtx/vec.h>
6
9
12void cM3d_calcInDivPos1(const Vec *start, const Vec *dir, float mult, Vec *pos);
13
16void cM3d_calcInDivPos2(const Vec *a, const Vec *b, float mult, Vec *pos);
17
void cM3d_calcInDivPos2(const Vec *a, const Vec *b, float mult, Vec *pos)
Obtains an intermediate position between two given points using a scalar multiplier.
Definition c_m3d.cpp:10
void cM3d_calcInDivPos1(const Vec *start, const Vec *dir, float mult, Vec *pos)
Obtains a position given a starting point, a direction and a scalar multiplier.
Definition c_m3d.cpp:4
A three-dimensional floating point vector.
Definition vec.h:18