设为首页收藏本站

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

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 7623|回复: 1

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

[复制链接]
发表于 2008-4-10 16:36:43 | 显示全部楼层 |阅读模式
我的模型,原意是使得每五个turtle成一个矩形,这些矩形随机散布在一定范围内。1 X2 R3 `2 Q+ }! \/ r5 A

8 |+ ]0 {4 a" v( ?4 A  s但是运行结果所有的矩形重叠在一起,只显示一个矩形。请大家帮忙看看。
! w0 a! s5 L3 v; r2 P0 r; s/ [% E4 `
  ?, K4 r  S( E, o. N5 I; Sturtles-own [a b c d k f g h# H. S% p1 f% h( W
  x y     ;; these are the leaf-turtle's offsets relative to center-turtle ; q$ J9 x, b4 h3 A* i
]! F% ^# r  ~8 c, U* Y
to new& V* u, O) L# N; {; I# Q4 V
  ca$ _5 X3 J4 x9 x" O! d3 a* n
  crt 5 * num_of_building
7 T3 u$ c. B: p  ask turtles [ifelse (remainder who 5 = 0) [set color red][set color blue]]& S7 v: A/ K8 |0 x& s
  scatter     ;;keep center-turtle random positions 9 g( h- H  X% U& r
  unit_plan   ;;make up the building plan
$ M% _3 K4 f6 z! n' fend$ I+ P. ~1 F0 W
to scatter
6 x# C2 Z- ^# f! nask turtles with [remainder who 5 = 0]
' z; I% _9 X2 ~" s- ^7 V[. d7 ]- q, s$ G# D( i
set xcor xcor - 6 + random-float 15; [9 n+ A+ ~, s' _1 R( D
set ycor ycor - 6 + random-float 154 ?: ]2 O: J5 i( W# Q1 ?# i
]
. e' P: H: s% Z) w3 H: `# Tend
- `8 D4 R) H/ p( lto unit_plan 2 f9 ?3 F$ {; |4 q
ask turtles [
: t+ b4 ]" p. p3 W- @! ~if (remainder who 5 = 1) [set a who ; {0 L6 a. _7 j2 F! n* Y# D
                          set x ( 0 - Wid / 2 ) ( {) b% q5 y, T' H9 [! V
                          set y  Dep / 2 ]( L* J: m& t. F3 `* T
           set b  int (a / 5) * 5, r# I  O+ }: {# ]5 q
    setxy ( xcor-of turtle b + x )
. \: `! o0 b6 o          ( ycor-of turtle b + y )* f- N, m; |3 B
if (remainder who 5 = 2) [set c who
- i2 i8 T; g; Y+ D0 t                          set x ( 0 - Wid / 2 )
$ W' r7 |: o( t% P8 g: d! {0 N& L$ @                          set y (0 - Dep / 2 )  ]
2 m' y# m! a$ w  b+ I$ v                          set d int (c / 5) * 5
9 X) a$ a; G. X. c   setxy   ( xcor-of turtle d + x )$ g' ^/ V2 Q$ z, H& F$ _
           (ycor-of turtle d + y ) - Q6 l6 a' F) M' _+ \$ x
          $ x8 g5 u6 F- h6 T$ ^: m. o* s* b
            
; q9 H. c8 G! B0 q& d! gif (remainder who 5 = 3) [set k who
. p2 S. q7 S: V4 f$ H6 ~* H                          set x( Wid / 2)  
3 N& f3 S& l4 u0 B/ |% T% {$ ^                          set y (0 - Dep / 2 ) ]4 |: M/ n2 A) n, F8 ~- y+ o
                          set f int (k / 5) * 5
! Q1 ^( @) ~. z: k' w# D& x- l  setxy   ( xcor-of turtle f + x )
- ?$ F3 w2 k! m           (ycor-of turtle f + y ) . `& T" i3 j: y1 h9 ~1 }
           
1 S* B( l# p8 _- H# j* x- q- i- W           
4 u$ I1 O0 J" m# B" Rif (remainder who 5 = 4) [set g who
2 X4 g/ X. V4 _, e: I* i- D, X8 g                          set x Wid / 2
+ l$ o% Q' i. `, f8 b8 _/ [. y                          set y  Dep / 2 ]
! p! O6 u9 c" b. k                          set h  int (g / 5) * 5' c# ~, k  C% o, k4 C
  setxy   ( xcor-of turtle h + x )" ^! Q" x6 J+ [
           (ycor-of turtle h + y )
& P! O$ {5 l* q3 a8 q5 Z( S* m                          - c( c, a* r7 b" W4 e8 g
                          
/ U' t  s" d" n2 d5 T                          ]
# `9 l& ~' E8 {3 X9 G+ Zend0 Q$ d( P: ^1 b' x( U
% n. H! o2 Z" G$ r: Z
[ 本帖最后由 etamina 于 2008-4-10 16:41 编辑 ]

本帖子中包含更多资源

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

x
 楼主| 发表于 2008-4-11 13:26:12 | 显示全部楼层
已经解决了,
9 S+ l& }2 A. [" b应该是
) o% x/ @; p$ Gask turtles [0 o' ]- Y4 g( S/ _- |
if (remainder who 5 = 1) [set x ( 0 - Wid / 2 )
$ x: X/ V: K$ p6 l% M# E$ J                          set y  Dep / 2
5 E( L$ B& ]+ O7 ]; d           set b  int (who / 5) * 57 b: k$ c& U) }- @  q
    setxy ( xcor-of turtle b + x )' s& L; o+ V7 |2 X5 }; D+ s* o
          ( ycor-of turtle b + y )]]. T/ M% a0 w  M6 N1 ?' P5 o+ w
end. W! N7 q# [5 i, d
之前有个括号位置不对没发现
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2026-3-7 06:50 , Processed in 0.014611 second(s), 15 queries .

Powered by Discuz! X3.4 Licensed

© 2001-2017 Comsenz Inc.

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