diff options
Diffstat (limited to 'src/collision/ColTriangle.h')
-rw-r--r-- | src/collision/ColTriangle.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/collision/ColTriangle.h b/src/collision/ColTriangle.h index 9e918e38..a2580c58 100644 --- a/src/collision/ColTriangle.h +++ b/src/collision/ColTriangle.h @@ -18,7 +18,13 @@ struct CColTriangle uint16 c; uint8 surface; - void Set(const CompressedVector *v, int a, int b, int c, uint8 surf, uint8 piece); + void Set(int a, int b, int c, uint8 surf) + { + this->a = a; + this->b = b; + this->c = c; + this->surface = surf; + } }; struct CColTrianglePlane @@ -63,6 +69,9 @@ struct CColTrianglePlane void Set(const CVector &va, const CVector &vb, const CVector &vc); void Set(const CompressedVector *v, CColTriangle &tri) { Set(v[tri.a].Get(), v[tri.b].Get(), v[tri.c].Get()); } void GetNormal(CVector &n) const { n = normal; } + float GetNormalX() const { return normal.x; } + float GetNormalY() const { return normal.y; } + float GetNormalZ() const { return normal.z; } float CalcPoint(const CVector &v) const { return DotProduct(normal, v) - dist; }; #endif };
\ No newline at end of file |