home *** CD-ROM | disk | FTP | other *** search
/ Virtual Reality Zone / VRZONE.ISO / mac / PC / REND386 / UTILS / OGRE41 / 1701.OSF < prev    next >
Text File  |  1993-04-06  |  1KB  |  62 lines

  1. # 244 Vertices
  2. # 190 Polygons
  3.  
  4. # OGRE Script File for the old USS Enterprise
  5. OBJECT ncc1701
  6. OBJECT saucer
  7. OBJECT body
  8. OBJECT neck
  9. OBJECT eng1
  10. OBJECT eng2
  11. OBJECT struts
  12. OBJECT strut1
  13. OBJECT strut2
  14.  
  15.  
  16. # Create the saucer section
  17. saucer = revolution 10 23 12 40 [ 50 80 80 135 155 170 180 215 275 500 615 635 615 610 300 250 215 190 150 130 95 75 50 ]
  18. saucer = trans saucer 400 300 0
  19.  
  20.  
  21. # Create the body of the ship
  22. body = cylinder 100 100 1000 12
  23. body = rotz body 90
  24. body = trans body -100 0 0
  25. ncc1701 = merge saucer body
  26.  
  27.  
  28. # Create a connection between body and saucer
  29. neck = cylinder 60 100 250 12
  30. neck = trans neck 0 125 0
  31. neck = rotz neck -25
  32. neck = trans neck 300 0 0
  33. ncc1701 = merge ncc1701 neck
  34.  
  35.  
  36. # Create the 2 engine sections
  37. eng1 = cylinder 100 60 800 12
  38. eng1 = rotz eng1 90
  39. eng2 = copy eng1
  40.  
  41. eng1 = trans eng1 -800 400 -300
  42. eng2 = trans eng2 -800 400  300
  43. ncc1701 = merge ncc1701 eng1
  44. ncc1701 = merge ncc1701 eng2
  45.  
  46.  
  47. # Attach engines to body
  48. strut1 = cylinder 40 40 550 4
  49. strut1 = trans strut1 0 300 0
  50. strut2 = copy strut1
  51. strut1 = rotx strut1  30
  52. strut2 = rotx strut2  -30
  53. struts = merge strut1 strut2
  54. struts = rotz struts 45
  55. struts = trans struts -400 0 0
  56. ncc1701 = merge ncc1701 struts
  57.  
  58.  
  59. # Save file
  60. savePLG ncc1701 1701.plg
  61.  
  62.