fill-round-rect.js 181 B

1234567
  1. /** 绘制填充圆角矩形方法 */
  2. export default {
  3. name: 'fillRoundRect',
  4. handle: (canvas, ctx, x, y, w, h, r) => {
  5. ctx.roundRect(x, y, w, h, r, true);
  6. }
  7. };