home *** CD-ROM | disk | FTP | other *** search
/ Nebula / nebula.bin / SourceCode / AdobeExamples / NX_Dial / README < prev   
Text File  |  1993-01-19  |  882b  |  18 lines

  1.  
  2. README file for the Dial application.
  3.  
  4. The Dial application shows four ways to draw lines around a dial. The first uses moveto,
  5. lineto in conjunction with rotate so that only one path is used. The second uses moveto,
  6. and lineto but calculates the absolute point location for the path (with the UNIX 
  7. trigonometric functions) and uses those points. The third and fourth also calculate the
  8. absolute positions only they use user paths instead of the conventional path
  9. construction operators, moveto and lineto. The difference between the third and the fourth
  10. is that in the fourth method the paths are stored in the server and not retransmitted each time.
  11.  
  12. Below lies an annotated list of the files used in the application. 
  13.  
  14. DialView            - A subclass of View. The view that manages the drawing of the dial. 
  15.  
  16. DialViewWraps    - Contains the wraps for drawing the components of the dial.
  17.  
  18.