gigawidgets 0.3.55
A wxWidgets-style UI library for the Arduino Giga Display Shield.
 
Loading...
Searching...
No Matches
position.hpp
Go to the documentation of this file.
1
2#pragma once
3
4#include <cinttypes>
5
6namespace ui {
7
15struct Position {
17 float x;
19 float y;
20};
21
22} // namespace ui
A struct that holds the normalized position of a widget.
Definition position.hpp:15
float x
The normalized horizontal position.
Definition position.hpp:17
float y
The normalized vertical position.
Definition position.hpp:19