Text.hpp
Go to the documentation of this file.
1 
6 #pragma once
7 
8 #include <esvg/Base.hpp>
9 
10 namespace esvg {
11  class Text : public esvg::Base {
12  public:
13  Text(PaintState _parentPaintState);
14  ~Text();
15  bool parse(const exml::Element& _element, mat2& _parentTrans, vec2& _sizeMax);
16  void display(int32_t _spacing) override;
17  };
18 }
19 
Main esvg namespace.
Definition: Base.hpp:24
Definition: Base.hpp:52
Definition: Base.hpp:36
Definition: Text.hpp:11