Import project

Original repository: https://github.com/encounter/ww
This commit is contained in:
Luke Street
2023-09-10 00:42:26 -04:00
parent 81ac53f131
commit adb95b135c
3731 changed files with 481532 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
//
// Generated by dtk
// Translation Unit: c_m3d_g_tri.cpp
//
#include "SSystem/SComponent/c_m3d_g_tri.h"
#include "SSystem/SComponent/c_m3d.h"
#include "dolphin/types.h"
/* 802527D4-80252878 .text __ct__8cM3dGTriFPC3VecPC3VecPC3Vec */
cM3dGTri::cM3dGTri(const Vec* pA, const Vec* pB, const Vec* pC) {
mA = *pA;
mB = *pB;
mC = *pC;
cM3d_CalcPla(&mA, &mB, &mC, &mNormal, &mD);
}
/* 80252878-802528A4 .text cross__8cM3dGTriCFPC8cM3dGCylP3Vec */
bool cM3dGTri::cross(const cM3dGCyl* pOther, Vec* pOut) const {
return cM3d_Cross_CylTri(pOther, this, pOut);
}