mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 03:27:45 +00:00
LibGfx: Add a function that adds two paths together
This will be used by Path2D#addPath in LibWeb.
This commit is contained in:
parent
a90667e79c
commit
1f97adbee8
2 changed files with 7 additions and 0 deletions
|
@ -376,4 +376,10 @@ Path Path::copy_transformed(Gfx::AffineTransform const& transform) const
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Path::add_path(Path const& other)
|
||||||
|
{
|
||||||
|
m_segments.extend(other.m_segments);
|
||||||
|
invalidate_split_lines();
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -252,6 +252,7 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
Path copy_transformed(AffineTransform const&) const;
|
Path copy_transformed(AffineTransform const&) const;
|
||||||
|
void add_path(Path const&);
|
||||||
|
|
||||||
DeprecatedString to_deprecated_string() const;
|
DeprecatedString to_deprecated_string() const;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue