struct EE::Graphics::RichText::RenderParagraph

Structure representing a rendered paragraph (line).

#include <richtext.hpp>

struct RenderParagraph {
    // fields

    std::vector<RenderSpan> spans;
    Float y { 0 };
    Float height { 0 };
    Float maxAscent { 0 };
    Float width { 0 };
};