Tortuga

No preview image

1 collaborator

Default-person Angie Beltran (Author)

Tags

(This model has yet to be categorized with any tags)
Visible to everyone | Changeable by everyone
Model was written in NetLogo 5.3.1 • Viewed 266 times • Downloaded 13 times • Run 0 times
Download the 'Tortuga' modelDownload this modelEmbed this model

Do you have questions or comments about this model? Ask them here! (You'll first need to log in.)


Comments and Questions

Please start the discussion about this model! (You'll first need to log in.)

Click to Run Model

;inicio

to setup
  ca
  tortugas
  reset-ticks
end 

; creacion de tortugas

to tortugas
  crt 1 [setxy 0 0 set heading 0]
end 

;ejecución

to go
  if not any? turtles [stop]
  ask turtles [
    velocidad-tortuga
  ]
  tick
end 

to velocidad-tortuga
  ask turtles [
    velocidad
  ]
end 

There is only one version of this model, created almost 9 years ago by Angie Beltran.

Attached files

No files

This model does not have any ancestors.

This model does not have any descendants.