LAB
Welcome to our digital laboratory - a space for experimentation, innovation, and pushing the limits of creative technology.
WebGL Experiments
Interactive 3D experiences and shader art
AI Integration
Machine learning meets creative design
Interactive Prototypes
Cutting-edge UI/UX experiments
Code Playground
Interactive code examples showcasing creative programming techniques
// Interactive Particle System
class ParticleSystem {
constructor(canvas) {
this.canvas = canvas;
this.ctx = canvas.getContext('2d');
this.particles = [];
this.mouse = { x: 0, y: 0 };
this.init();
this.animate();
}
init() {
for (let i = 0; i < 100; i++) {
this.particles.push({
x: Math.random() * this.canvas.width,
y: Math.random() * this.canvas.height,
vx: (Math.random() - 0.5) * 2,
vy: (Math.random() - 0.5) * 2,
size: Math.random() * 3 + 1,
color: `hsl(${Math.random() * 360}, 70%, 60%)`
});
}
}
animate() {
this.ctx.fillStyle = 'rgba(15, 23, 42, 0.1)';
this.ctx.fillRect(0, 0, this.canvas.width, this.canvas.height);
this.particles.forEach(particle => {
// Mouse attraction
const dx = this.mouse.x - particle.x;
const dy = this.mouse.y - particle.y;
const distance = Math.sqrt(dx * dx + dy * dy);
if (distance < 100) {
particle.vx += dx * 0.0001;
particle.vy += dy * 0.0001;
}
particle.x += particle.vx;
particle.y += particle.vy;
// Boundary check
if (particle.x < 0 || particle.x > this.canvas.width) particle.vx *= -1;
if (particle.y < 0 || particle.y > this.canvas.height) particle.vy *= -1;
// Draw particle
this.ctx.beginPath();
this.ctx.arc(particle.x, particle.y, particle.size, 0, Math.PI * 2);
this.ctx.fillStyle = particle.color;
this.ctx.fill();
});
requestAnimationFrame(() => this.animate());
}
}Interactive particle system with mouse attraction
Want to see more examples or contribute your own?
Digital Experiments
Interactive prototypes and experimental projects pushing the boundaries of web technology
Particle Physics Simulator
Real-time particle physics simulation with interactive controls.
Neural Network Visualizer
Interactive visualization of neural network training processes.
Generative Art Engine
AI-powered generative art creation with real-time parameters.
Audio Reactive Visuals
Real-time audio analysis creating dynamic visual experiences.
Quantum State Simulator
Interactive quantum mechanics visualization and simulation.
Morphing Geometries
Smooth morphing between complex 3D geometries.
Want to Collaborate?
Have an experimental idea or want to push the boundaries of what's possible? Let's create something extraordinary together.