设为首页收藏本站

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

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 7855|回复: 1

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

[复制链接]
发表于 2008-4-10 16:36:43 | 显示全部楼层 |阅读模式
我的模型,原意是使得每五个turtle成一个矩形,这些矩形随机散布在一定范围内。! j7 q2 O$ V8 Y) |7 }! \+ j

& r7 k  g/ D! U% D: s/ Q7 s但是运行结果所有的矩形重叠在一起,只显示一个矩形。请大家帮忙看看。% U; G! ?  X8 D( ~

4 _) C2 d; y% F) Pturtles-own [a b c d k f g h8 x; |0 I% N* y
  x y     ;; these are the leaf-turtle's offsets relative to center-turtle # h% Z3 Q/ }0 |
]: _' e+ j, e, A/ G1 h
to new
' V: d. }% K" A$ p- I1 p. ?  ca
, K+ _( D  m; b6 o, y  crt 5 * num_of_building% S$ G6 ?1 o8 t6 @9 a8 D
  ask turtles [ifelse (remainder who 5 = 0) [set color red][set color blue]]: a/ h/ W8 o5 j2 ^0 D
  scatter     ;;keep center-turtle random positions * j; h) N3 r( m" p3 U
  unit_plan   ;;make up the building plan
0 p6 X) @* @* e2 d8 S! L# Eend
( y7 x+ S: _0 wto scatter" h' X: i! I' t: {+ n9 i  O0 a0 X
ask turtles with [remainder who 5 = 0]- O: Y; w( N$ e  X: o
[" L: M1 T+ d2 W- O
set xcor xcor - 6 + random-float 15/ ^/ n: c6 D' M' r6 W  t
set ycor ycor - 6 + random-float 15+ P+ |2 |  [" G& [, |6 [8 D/ ]/ U
]8 o: o* s" Q7 O6 B6 c1 v! A
end. u5 U% P; q3 ^* f: }% @
to unit_plan
/ S/ h0 t$ f. ?' Q8 x8 rask turtles [
4 m' @9 G2 F& S. Fif (remainder who 5 = 1) [set a who ; l( ]5 H5 e* {
                          set x ( 0 - Wid / 2 )
. z2 D: k/ C( v9 o3 t                          set y  Dep / 2 ]
5 h5 m. R" U, Q5 _           set b  int (a / 5) * 59 W( J% R( |" t# U
    setxy ( xcor-of turtle b + x )! P  ?* k$ T! L: E- m: g
          ( ycor-of turtle b + y )
; l+ F1 n0 p3 o% z3 N1 J) Xif (remainder who 5 = 2) [set c who/ O' U7 }; j8 Q5 \  f
                          set x ( 0 - Wid / 2 ) , W4 V8 B4 e4 H( h
                          set y (0 - Dep / 2 )  ]9 f1 W6 j# R9 W" o8 a
                          set d int (c / 5) * 5( V) [% @* y3 r5 {$ |
   setxy   ( xcor-of turtle d + x )/ l" S4 C% |* m. J7 k0 R+ F/ u7 M
           (ycor-of turtle d + y ) 4 D, S( q% ]! U: ]6 O
          * ^+ M" G* a/ }
            0 @. r9 O  M. ^" ^; ~7 k
if (remainder who 5 = 3) [set k who
( f# [5 [( q% m7 X% B- ~1 E$ B) ^                          set x( Wid / 2)  % ?& v: _4 z: J" k
                          set y (0 - Dep / 2 ) ]# U! O; ~3 R: Q4 w" F0 [! l* O  |
                          set f int (k / 5) * 5+ c& V. x. \: ?+ m
  setxy   ( xcor-of turtle f + x )
7 W1 g0 d5 h& W; Z9 E! r4 O           (ycor-of turtle f + y ) ! [0 O# N4 s# Y# W- U
           ( e: A7 h1 q2 F4 p) f( D3 F
           ( V6 _6 l& x9 L, E
if (remainder who 5 = 4) [set g who& {# g7 m; y% f5 O
                          set x Wid / 2 + h# F' B, W' Z* ^4 T
                          set y  Dep / 2 ]( d8 A# ~$ A+ u  }5 o  d
                          set h  int (g / 5) * 5
2 H( U9 B; @3 P( r* g$ E  setxy   ( xcor-of turtle h + x )' T$ c: {& V1 P; c. o: k& V4 h/ d
           (ycor-of turtle h + y ) ( w! c8 E' `, Q7 I1 q
                          ) ^1 T5 X& W0 f6 h$ B
                          . w# G0 t5 ~- t! Y
                          ]
8 G6 ?9 Q4 `4 K5 e" N4 a4 Z  p9 B3 F( Dend) L1 A2 V$ M8 Z2 R

! L* i; Z- L- X9 ]8 {[ 本帖最后由 etamina 于 2008-4-10 16:41 编辑 ]

本帖子中包含更多资源

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

x
 楼主| 发表于 2008-4-11 13:26:12 | 显示全部楼层
已经解决了,6 j! |& e+ c7 U) B5 A, ~
应该是4 j  C+ L" p) D' B; f
ask turtles [/ i& t4 v& ]) I- f) M, U
if (remainder who 5 = 1) [set x ( 0 - Wid / 2 )
, \, v+ |9 n( Y                          set y  Dep / 2
0 Y) G- B" F. A1 N( ?; Z           set b  int (who / 5) * 5
: g# _8 Y+ K0 `& \8 s" x- v3 o    setxy ( xcor-of turtle b + x )
& ^! U  o: b1 l/ D4 C1 x8 y          ( ycor-of turtle b + y )]]
) |% E" d% w2 n8 K0 r9 D/ s: e0 kend
" R5 _) U: O# P2 _之前有个括号位置不对没发现
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2026-4-10 12:53 , Processed in 0.020661 second(s), 15 queries .

Powered by Discuz! X3.4 Licensed

© 2001-2017 Comsenz Inc.

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