home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 093.lha / Chaos / Sources / cdraw.def next >
Encoding:
Modula Definition  |  1986-11-21  |  495 b   |  22 lines

  1. (*
  2.         Chaos: a program that allows you to play with
  3.     "strange attractors". See "Scientific American" 
  4.     July 1987 issue.
  5.         
  6.         Created: 8/10/87 by Richie Bielak
  7.         
  8.         Copyright (c) 1987 by Richie Bielak
  9.         
  10.         This program maybe freely distributed, but please leave
  11.         my name in. Thanks.....Richie
  12.  
  13. *)
  14. DEFINITION MODULE ChaosDraw;
  15.  
  16.   FROM Intuition IMPORT WindowPtr;
  17.  
  18.   PROCEDURE DrawPicture (wp : WindowPtr; width, height : CARDINAL);
  19.  
  20.  
  21. END ChaosDraw.
  22.