Merge pull request #1695 from CPatchane/fix/support_ctx_roundRect

Add support for ctx.roundRect
This commit is contained in:
Anton Lavrenov 2024-01-03 07:23:00 -05:00 committed by GitHub
commit 48ae639b70
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 0 deletions

View File

@ -58,6 +58,7 @@ var COMMA = ',',
'putImageData',
'quadraticCurveTo',
'rect',
'roundRect',
'restore',
'rotate',
'save',
@ -586,6 +587,20 @@ export class Context {
rect(x: number, y: number, width: number, height: number) {
this._context.rect(x, y, width, height);
}
/**
* roundRect function.
* @method
* @name Konva.Context#roundRect
*/
roundRect(
x: number,
y: number,
width: number,
height: number,
radii: number | DOMPointInit | (number | DOMPointInit)[]
) {
this._context.roundRect(x, y, width, height, radii);
}
/**
* putImageData function.
* @method

View File

@ -22,6 +22,7 @@ describe('Context', function () {
'arc',
'arcTo',
'rect',
'roundRect',
'ellipse',
'fill',
'stroke',