mirror of
https://github.com/DrBeef/Raze.git
synced 2025-04-05 23:40:55 +00:00
- added some utilities to the Plane class that will be needed soon.
This commit is contained in:
parent
411e3e6f9c
commit
b3873be514
1 changed files with 8 additions and 1 deletions
|
@ -1651,6 +1651,12 @@ public:
|
|||
m_d = d;
|
||||
}
|
||||
|
||||
void Init(const FVector3& p1, const FVector3& p2, const FVector3& p3)
|
||||
{
|
||||
m_normal = ((p2 - p1) ^ (p3 - p1)).Unit();
|
||||
m_d = -(p3 |m_normal);
|
||||
}
|
||||
|
||||
// same for a play-vector. Note that y and z are inversed.
|
||||
void Set(DVector3 normal, double d)
|
||||
{
|
||||
|
@ -1671,7 +1677,7 @@ public:
|
|||
return DistToPoint(x, y, z) < 0.f;
|
||||
}
|
||||
|
||||
bool PointOnSide(FVector3 &v) { return PointOnSide(v.X, v.Y, v.Z); }
|
||||
bool PointOnSide(const FVector3 &v) { return PointOnSide(v.X, v.Y, v.Z); }
|
||||
|
||||
float A() { return m_normal.X; }
|
||||
float B() { return m_normal.Y; }
|
||||
|
@ -1684,4 +1690,5 @@ protected:
|
|||
float m_d;
|
||||
};
|
||||
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue