mirror of
https://github.com/zeldaret/ss
synced 2026-05-24 15:20:58 -04:00
26af4db82d
* update from dtk-template and start work towards using clangd * include <a> -> "a" * Update build.yml * remove/add non-trivial class in union warning
12 lines
285 B
C
12 lines
285 B
C
#ifndef D_AREA_MATH_H
|
|
#define D_AREA_MATH_H
|
|
|
|
#include "m/m_angle.h"
|
|
#include "m/m_mtx.h"
|
|
#include "m/m_vec.h"
|
|
|
|
void matrixCreateFromPosRotYScale(mMtx_c &, const mVec3_c &, const mAng, const mVec3_c &, mMtx_c *, f32);
|
|
bool checkIfVec3fInMatrix(const mMtx_c &, const mVec3_c &);
|
|
|
|
#endif
|