Formatting

This commit is contained in:
2024-03-02 06:30:32 -05:00
parent 3af9e28113
commit 1538b20c75
3 changed files with 1 additions and 5 deletions

View File

@@ -9,5 +9,4 @@
namespace fgl::engine
{
} // namespace fgl::engine

View File

@@ -4,7 +4,6 @@
#include "AABoundingBox.hpp"
namespace fgl::engine
{
template class AxisAlignedBoundingBox< CoordinateSpace::Model >;

View File

@@ -20,9 +20,7 @@ namespace fgl::engine
constexpr static auto SpaceType { CType };
AxisAlignedBoundingCube() :
m_middle( constants::WORLD_CENTER ),
m_span( 1.0f ) {}
AxisAlignedBoundingCube() : m_middle( constants::WORLD_CENTER ), m_span( 1.0f ) {}
explicit AxisAlignedBoundingCube( const Coordinate< CType > middle, const float span ) :
m_middle( middle ),