我正在制作和任务。任务是建立民主模式。我用坐标(4,6)建了一座议会大厦。我做了3个政党。现在,我想让那些投票的人。我使用Thread watchThread = new Thread(new WatchRunnable());
watchThread.setDaemon(true);
watchThread.start();
中的random-xcor
和random-ycor
随机制作,但其中一些是在议会大厦上制作的。我怎么能阻止这种情况发生。除了在议会大厦外,我希望到处都能制作海龟。这是代码。请帮帮我。
setxy
答案 0 :(得分:2)
to setup-people
set-default-shape people "person"
ask n-of 100 (patches with [pcolor != white]) [sprout-people 1]
end