mirror of
https://github.com/zeldaret/ss
synced 2026-05-23 15:01:38 -04:00
13 lines
329 B
C
13 lines
329 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 checkAreaBox(const mMtx_c &, const mVec3_c &);
|
|
bool checkAreaCyl(const mMtx_c &, const mVec3_c &);
|
|
|
|
#endif
|