epic meme race (cro)

epic meme race (cro) preview image

1 collaborator

Logo_hydro Hydro Gaming (Author)

Tags

(This model has yet to be categorized with any tags)
Visible to everyone | Changeable by the author
Model was written in NetLogo 5.3.1 • Viewed 215 times • Downloaded 14 times • Run 0 times
Download the 'epic meme race (cro)' modelDownload this modelEmbed this model

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


Info tab cannot be displayed because of an encoding error

Comments and Questions

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

Click to Run Model

globals
[
  d_x s
  d_t
  v
 d_x1 s1
  d_t1
  v1
]

to setup
 clear-all
  setup-trump
  setup-pozadina
 reset-ticks
end 

to go
  ask turtle 0
 [
   unos
   izračun
 ]
 ask turtle 1
[
 unos1
 izračun1
]
  tick
end 

to setup-trump
  create-turtles 2
  ask turtle 0
  [
    set heading 0
    set shape dunk_memes
    set color green
    set size 10
    setxy -20 -5
    if putanja [
      pen-down
    ]

  ]
  ask turtle 1
  [
    set heading 0
    set shape dank_memes
    set color blue
    set size 10
    setxy -20 10
     if putanja [
      pen-down
    ]
  ]
end 

to setup-pozadina
  ask patches
  [
    set pcolor pink
  ]
end 

to unos
   set d_t 0.01
  set v brzina
end 

to izračun
  set xcor (xcor + d_x)
  set s (s + d_x)
  set d_x (d_t * v )
end 

to unos1
   set d_t1 0.01
  set v1 brzina1
end 

to izračun1
  set xcor (xcor + d_x1)
  set s1 (s1 + d_x1)
  set d_x1 (d_t1 * v1 )
end 

There is only one version of this model, created almost 8 years ago by Hydro Gaming.

Attached files

File Type Description Last updated
epic meme race (cro).png preview Preview for 'epic meme race (cro)' almost 8 years ago, by Hydro Gaming Download

This model does not have any ancestors.

This model does not have any descendants.