mirror of
https://github.com/konvajs/konva.git
synced 2025-04-05 20:48:28 +08:00
Merge pull request #1695 from CPatchane/fix/support_ctx_roundRect
Add support for ctx.roundRect
This commit is contained in:
commit
48ae639b70
@ -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
|
||||
|
@ -22,6 +22,7 @@ describe('Context', function () {
|
||||
'arc',
|
||||
'arcTo',
|
||||
'rect',
|
||||
'roundRect',
|
||||
'ellipse',
|
||||
'fill',
|
||||
'stroke',
|
||||
|
Loading…
Reference in New Issue
Block a user