mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-09 17:49:40 +00:00
LibWeb: Add canvas.quadraticCurveTo()
Also adds a test, and removes debug spam ™️
This commit is contained in:
parent
9f3f98d4c0
commit
0a55679de4
Notes:
sideshowbarker
2024-07-19 06:58:33 +09:00
Author: https://github.com/alimpfard
Commit: 0a55679de4
Pull-request: https://github.com/SerenityOS/serenity/pull/2110
7 changed files with 70 additions and 2 deletions
|
@ -68,6 +68,10 @@ String Path::to_string() const
|
|||
}
|
||||
builder.append('(');
|
||||
builder.append(segment.point.to_string());
|
||||
if (segment.through.has_value()) {
|
||||
builder.append(", ");
|
||||
builder.append(segment.through.value().to_string());
|
||||
}
|
||||
builder.append(')');
|
||||
|
||||
builder.append(' ');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue