@tsparticles/shape-line
Version:
tsParticles line shape
10 lines (9 loc) • 350 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.drawLine = drawLine;
function drawLine(data) {
const { context, particle, radius } = data, shapeData = particle.shapeData, centerY = 0;
context.moveTo(-radius, centerY);
context.lineTo(radius, centerY);
context.lineCap = shapeData?.cap ?? "butt";
}
;