-
Notifications
You must be signed in to change notification settings - Fork 23
Open
Labels
documentationImprovements or additions to documentationImprovements or additions to documentationgood first issueGood for newcomersGood for newcomers
Description
As the title
practical-tools-for-simple-design/include/Util/Text.hpp
Lines 53 to 59 in c6a4ea8
| /** | |
| * @brief Draws the text with a given transform and z-index. | |
| * | |
| * @param transform The transform to apply to the text. | |
| * @param zIndex The z-index at which to draw the text. | |
| */ | |
| void Draw(const Core::Matrices &data) override; |
And I think those docs should be recorded in the interface Drawable not derived functions.
practical-tools-for-simple-design/include/Core/Drawable.hpp
Lines 9 to 19 in c6a4ea8
| struct Matrices { | |
| glm::mat4 m_Model; | |
| glm::mat4 m_Projection; | |
| }; | |
| class Drawable { | |
| public: | |
| virtual ~Drawable() = default; | |
| virtual void Draw(const Core::Matrices &data) = 0; | |
| virtual glm::vec2 GetSize() const = 0; | |
| }; |
Metadata
Metadata
Assignees
Labels
documentationImprovements or additions to documentationImprovements or additions to documentationgood first issueGood for newcomersGood for newcomers
Type
Projects
Status
🆕 Backlog