image ResEx Logo
ResExcellence www : Powered by Google
Cell Phone Themes Icons Mighty Mouse Cursors Software Reviews Widgets & Widgets

Articles
   3D
   Audio
   Custom Controls
   General RB
   Graphics
   Hacks
   Mac OS X
   Menus
   Novelty
   Printing
   REALbasic 2005
   REALbasic 2006
   Registration
   Resources
   Reviews
   Serial
   Speech
   Sockets
   XML
   Video
Resource Links
News
   Current News
   February 2006
   January 2006
   December 2005
   November 2005
   October 2005
   September 2005
   August 2005
   July 2005
   June 2005
   May 2005
   April 2005
   March 2005









REALbasic for Dummies
by Erick Tejkowski


Learning REALbasic through Applications
by Clayton E., Crooks II


REALbasic for Macintosh
by Michael Swaine


REALbasic Cross-Platform Application Development
by Mark S. Choate





Older files are in Stuffit 5 or greater format. Newer files are ".Zip". Download StuffIt Expander
Tell us about a bad link. Thank You!

Lissajous Figures by Erick Tejkowsi
09-19-02

Printer Version




This week we'll play around with some fun graphics patterns called Lissajous Figures. Besides being fun to watch, this project is also really easy to create. Most people can complete it in about 10 minutes. So, let's get started!

09-19-02_lisajouss.jpg (59k)


Build the Interface

This week's interface is really simple to create: one PushButton, one Canvas, and one Slider. When you add them to a window, leave their default names as is. (i.e. PushButton1, Canvas1, and Slider1).

  • PushButton1 - Caption = "Plot"
  • Canvas1 - width=500; height=400
  • Slider1 - minimum=1; maximum=10

Arrange the interface any way you want. An example might look like this:

09-19-02_interface.jpg (12k)

Source Code

Before you get started with the code for this project, you'll need to make a number of properties. Open the Code Editor for Window1 and add the following properties using Edit-New Property:

  • f as double
  • r as double
  • rad as double
  • t as double
  • x as integer
  • y as integer

The code this week is adapted from an existing Chipmunk BASIC project available here. Double-click PushButton1 and add the following code to its Action event:

  rad = 3.14159271180
  r = 180
  t = 90
  f = 0
  
  canvas1.graphics.foreColor=rgb(0,0,0)
  canvas1.graphics.fillrect 0,0,500,400
  
  while r > 1
    x = sin(t*rad*2)*r
    y = cos(t*rad*3)*r
    plot
    t = t+slider1.value110
    r = r*0.99991
  wend

Next, create a new method named Plot by choosing Edit-New Method. To this method, add the following code:

  
  x=x+250
  y=y+200
  
  if f=0 then
    canvas1.graphics.pixel(x,y)=rgb(255,255,0)
  else
    canvas1.graphics.foreColor=rgb(255,255,0)
    canvas1.graphics.DrawLine x,y,x-250,y-200
  end if

Conclusion

That's it for this week. Select Debug->Run to test your work. Try playing around with the various numbers in the source code to see what results you can produce. With a few more lines of code, you could save this picture for use as a nifty desktop image or for some other task. If you don't feel like creating the project by hand, you can download the finished project. See you next week!




Cell Phone Themes Icons Mighty Mouse Cursors Software Reviews Widgets & Widgets

Maintained by the Staff of ResExcellence. This entire site ©1997-2006 ResExcellence
Privacy Statement? Sure we gotta Privacy Statement. [an error occurred while processing this directive]