MCPcopy Create free account
hub / github.com/ErrorAtLine0/infinipaint / get_width

Method get_width

src/RichText/TextBox.cpp:940–947  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

938}
939
940float TextBox::get_width() {
941 rebuild();
942 float toRet = 0.0f;
943 for(auto& p : paragraphs)
944 toRet = std::max(toRet, p.p->getLongestLine());
945 toRet += 1.0f;
946 return toRet;
947}
948
949float TextBox::get_height() {
950 rebuild();

Callers 1

layoutMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected