NAP
fontutils.h
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this
3  * file, You can obtain one at https://mozilla.org/MPL/2.0/. */
4 
5 #pragma once
6 
7 namespace nap
8 {
9  namespace utility
10  {
15  enum class ETextOrientation : int
16  {
17  Left = 0,
18  Center = 1,
19  Right = 2
20  };
21  }
22 }
nap::utility::ETextOrientation::Right
@ Right
Draws the text to the left of the horizontal coordinate.
nap::utility::ETextOrientation
ETextOrientation
Definition: fontutils.h:15
nap
Definition: templateapp.h:17
nap::utility::ETextOrientation::Center
@ Center
Centers the text around the horizontal coordinate.
nap::utility::ETextOrientation::Left
@ Left
Draws text to the right of the horizontal coordinate.