home *** CD-ROM | disk | FTP | other *** search
/ Game Killer / Game_Killer.bin / 099.MAGNIFY.DAT < prev    next >
Text File  |  1991-04-26  |  687b  |  39 lines

  1. 'MAGNIFY.DAT
  2. '===========
  3. 'essentials as always
  4. INPUT,  see03.sc1
  5. OUTPUT, test.sc1
  6. DIR
  7.  
  8. 'first let's save the original polygon so we can compare it later
  9. 'to see if we were really able to magnify it
  10.  
  11. FIND, EXACT, 2, 1
  12. EXPORT, polygon.ele
  13.  
  14. 'now we tell SEE which (number) polygon we want to magnify:
  15.  
  16. FIND, NUMBER, 1
  17.  
  18. 'tell SEE what the day/dusk/night colors should be
  19.  
  20. COLOR, 12, 15, 6
  21.  
  22. 'and that we want this poly expanded by 4 times (linear)
  23.  
  24. X4
  25.  
  26. 'then execute
  27.  
  28. POLY
  29.  
  30. 'now let's bring back the original to see the difference
  31. '[bring it in as an object type 2 (polygon)]
  32.  
  33. TYPE, 2
  34. IMPORT, polygon.ele
  35.  
  36. 'OK; that's enough for this lesson. 
  37. SAVE,END
  38.  
  39.