style: format js

This commit is contained in:
zhbhun 2023-08-06 23:57:38 +08:00
parent 75c3ea4e51
commit b6dc446f7d

View File

@ -600,14 +600,9 @@ export class CanvasRenderer extends Renderer {
image.height,
image.width / image.height
]);
// const pattern = this.ctx.createPattern(
// this.resizeImage(image, width, height),
// 'repeat'
// ) as CanvasPattern;
// this.renderRepeat(path, pattern, x, y);
const scaleX = width / image.naturalWidth;
const scaleY = height / image.naturalHeight;
const pattern = this.ctx.createPattern(image, "repeat") as CanvasPattern;
const pattern = this.ctx.createPattern(image, 'repeat') as CanvasPattern;
const scaledPath = (path as Vector[]).map((item) => {
item.x = item.x / scaleX;
item.y = item.y / scaleY;