poli-charts
Version:
The best graphics for your Hedera Network application NFTs.
14 lines (12 loc) • 401 B
JavaScript
import { ctx } from "../toolbar.js";
export function erasing(offsetX, offsetY) {
try {
ctx.globalCompositeOperation = "destination-out";
ctx.lineWidth = 1200;
ctx.beginPath();
ctx.arc(offsetX, offsetY, 60, 0, Math.PI * 2); // Dibuja un círculo para borrar
ctx.fill();
} catch (e) {
console.error(`POLI-CHARTS REPORT: -> Error erasing. | Error: ${e}`);
}
}