From 55ce87466f012224a06998fcc20563c4adc10959 Mon Sep 17 00:00:00 2001 From: Eduardo Cavazos Date: Mon, 17 Nov 2008 06:20:25 -0600 Subject: [PATCH] boids: more indentation fixes --- extra/boids/boids.factor | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/extra/boids/boids.factor b/extra/boids/boids.factor index c3cf1077e9..193582524c 100644 --- a/extra/boids/boids.factor +++ b/extra/boids/boids.factor @@ -43,19 +43,19 @@ VAR: separation-radius ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! : init-variables ( -- ) -1.0 >cohesion-weight -1.0 >alignment-weight -1.0 >separation-weight + 1.0 >cohesion-weight + 1.0 >alignment-weight + 1.0 >separation-weight -75 >cohesion-radius -50 >alignment-radius -25 >separation-radius + 75 >cohesion-radius + 50 >alignment-radius + 25 >separation-radius -180 >cohesion-view-angle -180 >alignment-view-angle -180 >separation-view-angle + 180 >cohesion-view-angle + 180 >alignment-view-angle + 180 >separation-view-angle -10 >time-slice ; + 10 >time-slice ; ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! ! random-boid and random-boids