0.3.0
Loading...
Searching...
No Matches
PinIcon.hpp
1// This file is part of INSTINCT, the INS Toolkit for Integrated
2// Navigation Concepts and Training by the Institute of Navigation of
3// the University of Stuttgart, Germany.
4//
5// This Source Code Form is subject to the terms of the Mozilla Public
6// License, v. 2.0. If a copy of the MPL was not distributed with this
7// file, You can obtain one at https://mozilla.org/MPL/2.0/.
8
13
14#pragma once
15
16#include "imgui.h"
17#include <cstdint>
18
19namespace NAV::gui::widgets::PinIcon
20{
21enum class Type : uint8_t
22{
23 Flow,
24 Circle,
25 Square,
26 Grid,
27 RoundSquare,
28 Diamond
29};
30
37void Draw(const ImVec2& size, Type type, bool filled, const ImVec4& color = ImVec4(1, 1, 1, 1), const ImVec4& innerColor = ImVec4(0, 0, 0, 0));
38
39} // namespace NAV::gui::widgets::PinIcon