1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:27:46 +00:00

LibGfx: Add elliptical curves to Path

This commit is contained in:
Matthew Olsson 2020-07-21 23:46:15 -07:00 committed by Andreas Kling
parent 22f0953fe2
commit 1cffde7635
6 changed files with 261 additions and 61 deletions

View file

@ -35,6 +35,7 @@
namespace Gfx {
class IntRect;
class FloatPoint;
class IntPoint {
public:
@ -45,6 +46,8 @@ public:
{
}
IntPoint(const FloatPoint&);
int x() const { return m_x; }
int y() const { return m_y; }