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:
parent
22f0953fe2
commit
1cffde7635
6 changed files with 261 additions and 61 deletions
|
@ -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; }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue