Lissajous Figures

No preview image

1 collaborator

79107734_n00-1 Seth Tisue (Author)

Tags

math 

Tagged by Tim Denton over 12 years ago

Model group CCL | Visible to everyone | Changeable by group members (CCL)
Model was written in NetLogo 5.0RC6 • Viewed 248 times • Downloaded 28 times • Run 0 times
Download the 'Lissajous Figures' modelDownload this modelEmbed this model

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


WHAT IS IT?

http://en.wikipedia.org/wiki/Lissajous_curve

Comments and Questions

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

Click to Run Model

to setup
  clear-all
  reset-ticks
  create-turtles 1
  go
  ask turtles [ set size 5  pen-down ]
  go
  clear-drawing
end 

to go
  ask turtles [ move ]
  tick-advance 0.01 / smoothness
end 

to move  ;; turtle procedure
  let new-x max-pxcor * sin (a * ticks)
  let new-y max-pycor * cos (b * ticks)
  facexy new-x new-y
  setxy new-x new-y
end 

There are 2 versions of this model.

Uploaded by When Description Download
Seth Tisue over 12 years ago uses NL 5.0 now Download this version
Seth Tisue almost 14 years ago Lissajous Figures Download this version

Attached files

No files

This model does not have any ancestors.

This model does not have any descendants.