Breeds and Shapes Example
Model was written in NetLogo 5.0.4
•
Viewed 1445 times
•
Downloaded 166 times
•
Run 2 times
Do you have questions or comments about this model? Ask them here! (You'll first need to log in.)
WHAT IS IT?
This code example shows how to create and control groups of turtles, i.e. breeds.
It also shows how to set the default shape of a breed, so all turtles with that breed will have that shape.
To create your own shapes, use the Shapes Editor in the Tools menu.
Comments and Questions
Click to Run Model
breed [monsters monster] breed [fish a-fish] ;; the word "fish" is both singular and plural, ;; so we need to use something different for ;; the singular form to setup clear-all ;; clear all patches and turtles set-default-shape monsters "monster" ;; shape is defined in Turtle Shapes Editor set-default-shape fish "fish" ;; ditto ask patches with [pxcor = 0] [ ;; just the middle column of patches ifelse random 2 = 0 ;; flip a coin [ sprout-monsters 1 ] [ sprout-fish 1 ] ] ask turtles [ ;; includes both monsters and fish set heading 90 ;; face east ] reset-ticks end to move-monsters ask monsters [ fd 1 ] tick end to move-fish ask fish [ fd 1 ] tick end ; Public Domain: ; To the extent possible under law, Uri Wilensky has waived all ; copyright and related or neighboring rights to this model.
There are 10 versions of this model.
Attached files
File | Type | Description | Last updated | |
---|---|---|---|---|
Breeds and Shapes Example.png | preview | Preview for 'Breeds and Shapes Example' | over 12 years ago, by Uri Wilensky | Download |
This model does not have any ancestors.
This model does not have any descendants.