Kerning.hpp
Go to the documentation of this file.
1 
6 #pragma once
7 
8 namespace ewol {
40  class Kerning {
41  public:
42  char32_t m_UVal;
43  float m_value;
44  public:
48  Kerning() :
49  m_UVal(0),
50  m_value(0) {
51 
52  };
58  Kerning(const char32_t _charcode, const float _value) :
59  m_UVal(_charcode),
60  m_value(_value) {
61 
62  };
66  ~Kerning() { };
67  };
68 };
69 
~Kerning()
normal destructor
Definition: Kerning.hpp:66
Kerning(const char32_t _charcode, const float _value)
Normal constructor.
Definition: Kerning.hpp:58
Kerning properties of one specific Glyph with an other.
Definition: Kerning.hpp:40
Definition: Area.hpp:16
Kerning()
Simple constructor that allow to allocate the std::vector element.
Definition: Kerning.hpp:48
char32_t m_UVal
unicode value (the previous character that must be before)
Definition: Kerning.hpp:42
float m_value
kerning real offset
Definition: Kerning.hpp:43