graphs/include/config.h

49 lines
1.7 KiB
C
Raw Permalink Normal View History

#pragma once
/*
* Copyright (C) 2024 Brett Terpstra
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef GRAPHS_CONFIG_H
#define GRAPHS_CONFIG_H
#include <blt/std/types.h>
#include <blt/math/vectors.h>
namespace conf
{
inline constexpr float DEFAULT_COOLING_FACTOR = 0.999999f;
inline constexpr float DEFAULT_MIN_COOLING = 40;
inline constexpr float DEFAULT_SPRING_LENGTH = 175.0;
inline constexpr float DEFAULT_INITIAL_TEMPERATURE = 100;
2024-07-30 21:35:59 -04:00
inline constexpr float POINT_SIZE = 75;
inline constexpr float OUTLINE_SCALE = 1.25f;
2024-07-29 22:05:18 -04:00
inline constexpr auto DEFAULT_IMAGE = "unknown";
inline constexpr auto POINT_OUTLINE_COLOR = blt::make_color(0, 0.6, 0.6);
inline constexpr auto POINT_HIGHLIGHT_COLOR = blt::make_color(0, 1.0, 1.0);
inline constexpr auto POINT_SELECT_COLOR = blt::make_color(0, 0.9, 0.7);
2024-07-28 14:01:19 -04:00
inline constexpr float DEFAULT_THICKNESS = 2.0f;
inline constexpr auto EDGE_COLOR = blt::make_color(0, 0.8, 0);
inline constexpr auto EDGE_OUTLINE_COLOR = blt::make_color(0, 1, 0);
}
2024-07-27 20:53:47 -04:00
class graph_t;
2024-07-29 14:01:07 -04:00
class selector_t;
2024-07-27 20:53:47 -04:00
struct loader_t;
#endif //GRAPHS_CONFIG_H