Files
ss/include/toBeSorted/area_math.h
T
Elijah Thomas 26af4db82d update from dtk-template - clangd :) (#66)
* update from dtk-template and start work towards using clangd

* include <a> -> "a"

* Update build.yml

* remove/add non-trivial class in union warning
2024-10-16 15:36:02 -04:00

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