0.2.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
18namespace NAV::gui::widgets::PinIcon
19{
20enum class Type : ImU32
21{
22 Flow,
23 Circle,
24 Square,
25 Grid,
26 RoundSquare,
27 Diamond
28};
29
36void Draw(const ImVec2& size, Type type, bool filled, const ImVec4& color = ImVec4(1, 1, 1, 1), const ImVec4& innerColor = ImVec4(0, 0, 0, 0));
37
38} // namespace NAV::gui::widgets::PinIcon