mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 18:40:05 +00:00
Splitting radar logic out of render layer into manager and view classes
This commit is contained in:
parent
59be110c10
commit
30fadcfbb6
12 changed files with 410 additions and 133 deletions
16
wxdata/include/scwx/common/constants.hpp
Normal file
16
wxdata/include/scwx/common/constants.hpp
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
#pragma once
|
||||
|
||||
#include <cstdint>
|
||||
|
||||
namespace scwx
|
||||
{
|
||||
namespace common
|
||||
{
|
||||
|
||||
constexpr uint32_t MAX_1_DEGREE_RADIALS = 360;
|
||||
constexpr uint32_t MAX_0_5_DEGREE_RADIALS = 720;
|
||||
constexpr uint32_t MAX_RADIALS = MAX_0_5_DEGREE_RADIALS;
|
||||
constexpr uint32_t MAX_DATA_MOMENT_GATES = 1840;
|
||||
|
||||
} // namespace common
|
||||
} // namespace scwx
|
||||
15
wxdata/include/scwx/common/types.hpp
Normal file
15
wxdata/include/scwx/common/types.hpp
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
#pragma once
|
||||
|
||||
namespace scwx
|
||||
{
|
||||
namespace common
|
||||
{
|
||||
|
||||
enum class RadialSize
|
||||
{
|
||||
_0_5Degree,
|
||||
_1Degree
|
||||
};
|
||||
|
||||
} // namespace common
|
||||
} // namespace scwx
|
||||
Loading…
Add table
Add a link
Reference in a new issue