forked from Chaospott/site
		
	Revert "This reverts commit d40664595eb9bcf4503009fcf9de2322b5582a0d."
This reverts commit 418de899e9.
			
			
This commit is contained in:
		@@ -114,19 +114,35 @@
 | 
				
			|||||||
    // animation
 | 
					    // animation
 | 
				
			||||||
    function initAnimation() {
 | 
					    function initAnimation() {
 | 
				
			||||||
        animate();
 | 
					        animate();
 | 
				
			||||||
 | 
					        for(var i in points) {
 | 
				
			||||||
 | 
					            shiftPoint(points[i]);
 | 
				
			||||||
 | 
					        }
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    function animate() {
 | 
					    function animate() {
 | 
				
			||||||
        if(animateHeader) {
 | 
					        if(animateHeader) {
 | 
				
			||||||
            ctx.clearRect(0,0,width,height);
 | 
					            ctx.clearRect(0,0,width,height);
 | 
				
			||||||
            for(var i in points) {
 | 
					            for(var i in points) {
 | 
				
			||||||
                points[i].active = 0.3;
 | 
					                // detect points in range
 | 
				
			||||||
                points[i].circle.active = 0.6;
 | 
					                if(Math.abs(getDistance(target, points[i])) < 4000) {
 | 
				
			||||||
 | 
					                    points[i].active = 0.3;
 | 
				
			||||||
 | 
					                    points[i].circle.active = 0.6;
 | 
				
			||||||
 | 
					                } else if(Math.abs(getDistance(target, points[i])) < 20000) {
 | 
				
			||||||
 | 
					                    points[i].active = 0.1;
 | 
				
			||||||
 | 
					                    points[i].circle.active = 0.3;
 | 
				
			||||||
 | 
					                } else if(Math.abs(getDistance(target, points[i])) < 40000) {
 | 
				
			||||||
 | 
					                    points[i].active = 0.02;
 | 
				
			||||||
 | 
					                    points[i].circle.active = 0.1;
 | 
				
			||||||
 | 
					                } else {
 | 
				
			||||||
 | 
					                    points[i].active = 0;
 | 
				
			||||||
 | 
					                    points[i].circle.active = 0;
 | 
				
			||||||
 | 
					                }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
                drawLines(points[i]);
 | 
					                drawLines(points[i]);
 | 
				
			||||||
                points[i].circle.draw();
 | 
					                points[i].circle.draw();
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					        requestAnimationFrame(animate);
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    function shiftPoint(p) {
 | 
					    function shiftPoint(p) {
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user