Files
cup_edit/thermion_dart/native/include/Globals.hpp
2025-01-07 08:25:48 +08:00

11 lines
266 B
C++

#include "math.h"
namespace thermion {
using namespace filament;
constexpr math::float3 AXIS_COLORS[3] {
math::float3{1.0f, 0.0f, 0.0f}, // X
math::float3{0.0f, 1.0f, 0.0f}, // Y
math::float3{0.0f, 0.0f, 1.0f}, // Z
};
}