Leaf Venation

No preview image

1 collaborator

Tags

biol312 

"written as part of this course"

Tagged by Steven Brewer about 9 years ago

Visible to everyone | Changeable by everyone
Model was written in NetLogo 5.2.0 • Viewed 214 times • Downloaded 31 times • Run 0 times
Download the 'Leaf Venation' 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

breed [leafs leaf]
breed [stems stem]
stems-own [ gen ]

to setup
  clear-all
  create-stems 1 [
    set shape "dot"
    setxy 0 min-pycor
    pd
    set heading 0
    set gen 1
    set color green
  ]
  reset-ticks
end 

to go
  create-leafs 1 [
    set shape "leaf 2"
    set size 30 
    set color 68
    ]
  ask stems [
    fd (3 * ( 2 / gen ))
    hatch 1 [ rt 35 set gen gen + 1]
    hatch 1 [ lt 35 set gen gen + 1]
    if not (who = 0) [die]
  ]
  tick
  if (ticks > 4) [ask stems [die] stop]
end 

There are 3 versions of this model.

Uploaded by When Description Download
Veronica Echevarria about 9 years ago Quick Save Download this version
Veronica Echevarria about 9 years ago Updated and Finished Download this version
Veronica Echevarria about 9 years ago Initial upload Download this version

Attached files

No files

This model does not have any ancestors.

This model does not have any descendants.