设为首页收藏本站

最大的系统仿真与系统优化公益交流社区

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 5893|回复: 1

[交流] 看看这段代码的问题

[复制链接]
发表于 2008-4-10 16:36:43 | 显示全部楼层 |阅读模式
我的模型,原意是使得每五个turtle成一个矩形,这些矩形随机散布在一定范围内。
5 m' K9 a4 J2 M- g4 s5 b: A, j
" |# P3 j4 A* I' {/ Z但是运行结果所有的矩形重叠在一起,只显示一个矩形。请大家帮忙看看。8 U4 ]% C2 E3 z$ ~" o) P% B/ ?
3 O4 W1 ?1 T% w8 }
turtles-own [a b c d k f g h
% _) r+ q  b+ A, ^& U8 @, d# Y  x y     ;; these are the leaf-turtle's offsets relative to center-turtle & g+ p, g  [8 i7 a2 ~. `8 O4 Y  n+ d1 c
]. [- u4 V$ ^' S* x' i  w
to new
7 u% t4 }( C8 P) O6 s  ca/ y6 u: W5 ?: `( U) ?( G' U
  crt 5 * num_of_building
1 `( _7 j# n% m+ H2 v  ask turtles [ifelse (remainder who 5 = 0) [set color red][set color blue]]3 _- M0 t' ]/ G% _
  scatter     ;;keep center-turtle random positions / @+ Z; H+ Q% J  F, r% [
  unit_plan   ;;make up the building plan! V0 o, K: V+ }0 s! X3 E2 ^
end7 _# T, f3 j8 e
to scatter
% z5 i1 [2 k" \2 u5 u) `ask turtles with [remainder who 5 = 0]
/ M; [1 i4 B' b# V' n[1 ]1 @1 E$ N* X1 J  C; B+ Y; h
set xcor xcor - 6 + random-float 15( T  d7 l, s, ^9 z
set ycor ycor - 6 + random-float 15
. b2 N) L" B# C. `7 N, U]
: J2 w0 X, j* n, [, D2 zend
) j3 w3 r9 t5 ~3 a8 Vto unit_plan
3 g0 A! h4 x' O; ?# s* R- K0 p4 kask turtles [4 H! c9 t0 S+ W! T2 ^& m9 z
if (remainder who 5 = 1) [set a who
( b" ?* \2 a! x7 n. [                          set x ( 0 - Wid / 2 )
' l% E6 U. j( @5 _' Y# Z* w7 G                          set y  Dep / 2 ]2 S2 B  u& H1 u, k1 z# D
           set b  int (a / 5) * 5
/ q. I. ?3 d9 C7 P    setxy ( xcor-of turtle b + x )
! |# O% X1 V8 N/ M1 j          ( ycor-of turtle b + y )2 t: ~4 ~8 C- N$ c; r& t
if (remainder who 5 = 2) [set c who' E. f' X$ `# G# Q! V! `' l" ]
                          set x ( 0 - Wid / 2 )
( `+ M/ |4 J! O  O                          set y (0 - Dep / 2 )  ]
5 u7 n' l/ Y6 L) G                          set d int (c / 5) * 5
. W* V8 _. D- {   setxy   ( xcor-of turtle d + x )$ a: x2 k. c1 j" @+ W
           (ycor-of turtle d + y ) - B% [9 m7 q; A' L
          ( r/ n+ c" G3 X4 F
            3 L6 j9 l; n1 i
if (remainder who 5 = 3) [set k who
; ?3 v  k" a8 F# l: R1 A                          set x( Wid / 2)  8 j0 @5 B0 D- ~0 e/ G* _, x0 n
                          set y (0 - Dep / 2 ) ]
% L% h! b% B  J                          set f int (k / 5) * 5
8 i. D* N  l' t) R" d; Q- ]  setxy   ( xcor-of turtle f + x )' K# a, B( r7 T, O4 ]; y$ ]! H2 |4 a
           (ycor-of turtle f + y )
# H3 y3 V. _: w8 o             G; q+ \; S4 G) }4 c
           
3 d1 Y* a! C  |" L7 C# wif (remainder who 5 = 4) [set g who
' F3 L3 ?; t! w0 q% t                          set x Wid / 2
5 ~1 D2 D5 b% b) P1 w                          set y  Dep / 2 ]
* L- B8 [# l5 Y5 P                          set h  int (g / 5) * 5
' r; v1 y+ S$ E1 s0 _! C  setxy   ( xcor-of turtle h + x )
# G6 l+ D! l  D' O' E* k           (ycor-of turtle h + y ) 1 d- o$ w0 w% @
                          6 U8 C9 [$ }$ e' Y. O: {# `8 U
                          4 ?3 U, E6 S4 ]% t5 V' e- v
                          ]
- |8 A. X# R  `% Y% f2 uend. F: M3 G1 I4 b; g/ o

( C, n1 U8 e: X9 E0 E( J1 N[ 本帖最后由 etamina 于 2008-4-10 16:41 编辑 ]

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?注册

x
 楼主| 发表于 2008-4-11 13:26:12 | 显示全部楼层
已经解决了,, X+ B6 c7 P4 K/ U
应该是+ y- X* w) I! q7 J
ask turtles [
' X9 H, g! a7 Sif (remainder who 5 = 1) [set x ( 0 - Wid / 2 ) ( m- L8 z2 m* B/ X% ]
                          set y  Dep / 2 8 i7 W4 L8 x9 F# i
           set b  int (who / 5) * 5: f0 v2 l) a& c1 l( W
    setxy ( xcor-of turtle b + x )
1 j8 a, v& ?7 f. e8 q1 P          ( ycor-of turtle b + y )]]
% k( A* p  i6 I% v; P* t4 Y* t2 P1 Vend1 e4 ^, X) V7 a8 `$ h9 T
之前有个括号位置不对没发现
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|Archiver|手机版|SimulWay 道于仿真   

GMT+8, 2025-6-29 22:47 , Processed in 0.016739 second(s), 15 queries .

Powered by Discuz! X3.4 Licensed

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表