set up most of player actor stuff

This commit is contained in:
TakaRikka
2023-09-10 17:47:40 -07:00
parent 0f3b98fdca
commit 2df2da338d
17 changed files with 2258 additions and 11 deletions
+2
View File
@@ -77,6 +77,8 @@ struct cCcD_SrcTriAttr {
class cCcD_TriAttr : public cCcD_ShapeAttr, public cM3dGTri {
public:
cCcD_TriAttr() {}
virtual void CalcAabBox();
virtual bool GetNVec(cXyz const&, cXyz*) const;
virtual bool CrossAtTg(cCcD_CpsAttr const&, cXyz*) const;
+1
View File
@@ -20,6 +20,7 @@ public:
Vec mB;
Vec mC;
cM3dGTri() {}
cM3dGTri(const Vec *pA, const Vec *pB, const Vec *pC);
bool cross(const cM3dGCyl*, Vec*) const;
};