UNPKG

tsparticles

Version:

Porting of the abandoned Vincent Garreau's particles.js, converted in TypeScript. Added many new cool features and various bug fixes.

12 lines (11 loc) 289 B
export class Drawer { constructor(container, particle) { this.container = container; this.particle = particle; } draw() { const container = this.container; const particle = this.particle; container.canvas.drawParticle(particle); } }