Stowy Physics Engine 0.1.0
Loading...
Searching...
No Matches
Projection.hpp
Go to the documentation of this file.
1
11#pragma once
12
13namespace stw
14{
16{
17 float min;
18 float max;
19
20 [[nodiscard]] bool Overlaps(const Projection& other) const;
21 [[nodiscard]] float GetOverlap(const Projection& other) const;
22};
23}
Definition BroadPhaseGrid.hpp:18
Definition Projection.hpp:16
bool Overlaps(const Projection &other) const
Definition Projection.cpp:7
float GetOverlap(const Projection &other) const
Definition Projection.cpp:12
float min
Definition Projection.hpp:17
float max
Definition Projection.hpp:18