Rounded Fill Rect
Some checks failed
Run ReCI Build Test / Explore-Gitea-Actions (push) Failing after 1m49s

This commit is contained in:
2024-07-10 14:49:37 -04:00
parent d118ae2f8e
commit 523806f9ef
3 changed files with 21 additions and 4 deletions

View File

@@ -104,7 +104,9 @@ public:
J2D::Begin();
J2D::FillRect(JGL::Colors::Blue, {32, 32}, {100.5, 100.5});
J2D::FillRect({255,0,0,255/2}, {100.5, 100.5}, {32, 32});
J2D::RoundedFillRect(JGL::Colors::Red, {256, 256}, {100.5, 100.5}, 8, 8);
//J2D::FillRect({255,0,0,255/2}, {100.5, 100.5}, {32, 32});
//J2D::OutlineTriangle(JGL::Colors::Yellow, {{140, 200},{135, 100},{105, 100}});
J2D::FillCircle(JGL::Colors::White, {120, 200}, 20, 16);