- https://harald.ist.org/paste/spiral.html
- 1<!DOCTYPE html><html lang="en" tabindex="0"><head><meta charset="UTF-8"><script>
- 2const RPM = 2;
- 3const MULTIPLIER = 40;
- 4var CANVAS;
- 5
- 6function calc_position( angle, angle_offset) {
- 7 const mid_x = CANVAS.width / 2;
- 8 const mid_y = CANVAS.height / 2;
- 9 const DtoR = Math.PI / 180;
- 10
- 11 const radius_x = angle / 360/MULTIPLIER * mid_x;
- 12 const radius_y = angle / 360/MULTIPLIER * mid_y;
- 13 const x = mid_x + Math.cos( (angle + angle_offset) * DtoR ) * radius_x;
- 14 const y = mid_y + Math.sin( (angle + angle_offset) * DtoR ) * radius_y;
- 15
- 16 return { x, y };
- 17}
- 18
- 19
- 20function animate () {
- 21 const ctx = CANVAS.getContext( "2d" );
- 22 const now = new Date().getTime();
- 23 const max = 360*MULTIPLIER;
- 24 const angle_offset = now / 1000 * RPM * -360;
- 25
- 26 const start = calc_position( 0, angle_offset );
- 27 ctx.strokeStyle = "#000";
- 28 ctx.lineWidth = 0.5;
- 29 ctx.clearRect( 0, 0, CANVAS.width, CANVAS.height );
- 30
- 31 ctx.beginPath();
- 32 ctx.moveTo( start.x, start.y );
- 33 for (let angle=0; angle<max; ++angle) {
- 34 const alpha = angle / max;
- 35 const position = calc_position( angle, angle_offset );
- 36 ctx.lineTo( position.x, position.y );
- 37 }
- 38 ctx.stroke();
- 39
- 40 requestAnimationFrame( animate );
- 41}
- 42
- 43addEventListener( "load", ()=>{
- 44 CANVAS = document.querySelector( "canvas" );
- 45 CANVAS.setAttribute( "width", CANVAS.width = 400 );
- 46 CANVAS.setAttribute( "height", CANVAS.height = 400 );
- 47 animate();
- 48});
- 49</script></head><body><h1>Spiral</h1>
- 50
- 51<canvas width="400" height="400"></canvas>
- 52
- 53
- 54</body></html>
Every program ends, but not all of them halt.
Spiral