home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 3 / PDCD_3.iso / utilities / utilsm / mkdrawf / Examples / src / Include < prev    next >
Encoding:
Text File  |  1995-04-21  |  362 b   |  30 lines

  1. # Demonstration of the Include feature.
  2. # You should be in the Examples directory to do this.
  3.  
  4. FontTable {
  5.   1 "Trinity.Medium.Italic"
  6. }
  7.  
  8. Path {
  9.   Move 100 100
  10.   Line 300 300
  11. }
  12.  
  13. Include "Src.Koch"
  14.  
  15. Text {
  16.   StartAt 200 200
  17.   Size 20 20
  18.   Style 1
  19.   Text "Large text"
  20. }
  21.  
  22. Include "Src.Circles"
  23.  
  24. Text {
  25.   StartAt 200 200
  26.   Size 10 10
  27.   Style 1
  28.   Text "Small text"
  29. }
  30.