clean up after testing
parent
cc1c072cb6
commit
a90ad2b2f1
|
@ -11,12 +11,10 @@ math-contrib threads strings arrays prettyprint xlib x ;
|
|||
|
||||
SYMBOL: rule
|
||||
|
||||
! 8 <hashtable> rule set
|
||||
8 <hashtable> rule set-global
|
||||
|
||||
SYMBOL: char-0
|
||||
|
||||
! 48 char-0 set
|
||||
48 char-0 set-global
|
||||
|
||||
: rule-keys ( -- { ... } )
|
||||
|
|
|
@ -6,37 +6,24 @@ USING: namespaces math kernel sequences arrays xlib x ;
|
|||
|
||||
! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
|
||||
! SYMBOL: separation-radius 100 separation-radius set
|
||||
! SYMBOL: alignment-radius 100 alignment-radius set
|
||||
! SYMBOL: cohesion-radius 100 cohesion-radius set
|
||||
|
||||
SYMBOL: separation-radius 100 separation-radius set-global
|
||||
SYMBOL: alignment-radius 100 alignment-radius set-global
|
||||
SYMBOL: cohesion-radius 100 cohesion-radius set-global
|
||||
|
||||
! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
|
||||
! SYMBOL: separation-view-angle 90 separation-view-angle set
|
||||
! SYMBOL: alignment-view-angle 90 alignment-view-angle set
|
||||
! SYMBOL: cohesion-view-angle 90 cohesion-view-angle set
|
||||
|
||||
SYMBOL: separation-view-angle 90 separation-view-angle set-global
|
||||
SYMBOL: alignment-view-angle 90 alignment-view-angle set-global
|
||||
SYMBOL: cohesion-view-angle 90 cohesion-view-angle set-global
|
||||
|
||||
! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
|
||||
! SYMBOL: separation-weight 1.0 separation-weight set
|
||||
! SYMBOL: alignment-weight 0.5 alignment-weight set
|
||||
! SYMBOL: cohesion-weight 1.0 cohesion-weight set
|
||||
|
||||
SYMBOL: separation-weight 1.0 separation-weight set-global
|
||||
SYMBOL: alignment-weight 0.5 alignment-weight set-global
|
||||
SYMBOL: cohesion-weight 1.0 cohesion-weight set-global
|
||||
|
||||
! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
|
||||
! SYMBOL: world-size { 400 400 } world-size set
|
||||
SYMBOL: world-size { 400 400 } world-size set-global
|
||||
|
||||
! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
|
@ -45,7 +32,6 @@ TUPLE: boid pos vel ;
|
|||
|
||||
! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
|
||||
! SYMBOL: time-slice 0.5 time-slice set
|
||||
SYMBOL: time-slice 0.5 time-slice set-global
|
||||
|
||||
! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||
|
|
Loading…
Reference in New Issue