Reformat code in Math libary

This commit is contained in:
Wojtek Figat
2022-05-21 20:04:12 +02:00
parent 785f8915b7
commit 2eb51f9a83
26 changed files with 103 additions and 474 deletions

View File

@@ -13,7 +13,6 @@
API_STRUCT(InBuild) struct FLAXENGINE_API BoundingFrustum
{
private:
Matrix _matrix;
Plane _pNear;
Plane _pFar;
@@ -23,7 +22,6 @@ private:
Plane _pBottom;
public:
/// <summary>
/// Empty constructor.
/// </summary>
@@ -41,11 +39,9 @@ public:
}
public:
String ToString() const;
public:
/// <summary>
/// Gets the matrix that describes this bounding frustum.
/// </summary>
@@ -194,7 +190,6 @@ public:
float GetHeightAtDepth(float depth) const;
public:
FORCE_INLINE bool operator==(const BoundingFrustum& other) const
{
return _matrix == other._matrix;
@@ -206,7 +201,6 @@ public:
}
public:
/// <summary>
/// Checks whether a point lays inside, intersects or lays outside the frustum.
/// </summary>