|
@@ -29,16 +29,16 @@
|
|
|
var programFill = function ( context ) {
|
|
|
|
|
|
context.beginPath();
|
|
|
- context.arc( 0, 0, 1, 0, PI2, true );
|
|
|
+ context.arc( 0, 0, 0.5, 0, PI2, true );
|
|
|
context.fill();
|
|
|
|
|
|
}
|
|
|
|
|
|
var programStroke = function ( context ) {
|
|
|
|
|
|
- context.lineWidth = 0.05;
|
|
|
+ context.lineWidth = 0.025;
|
|
|
context.beginPath();
|
|
|
- context.arc( 0, 0, 1, 0, PI2, true );
|
|
|
+ context.arc( 0, 0, 0.5, 0, PI2, true );
|
|
|
context.stroke();
|
|
|
|
|
|
}
|
|
@@ -72,7 +72,7 @@
|
|
|
particle.position.x = Math.random() * 800 - 400;
|
|
|
particle.position.y = Math.random() * 800 - 400;
|
|
|
particle.position.z = Math.random() * 800 - 400;
|
|
|
- particle.scale.x = particle.scale.y = Math.random() * 10 + 10;
|
|
|
+ particle.scale.x = particle.scale.y = Math.random() * 20 + 20;
|
|
|
scene.add( particle );
|
|
|
|
|
|
}
|