home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / X / mit / demos / gpc / objects / quadric.vrb < prev    next >
Encoding:
Text File  |  1991-02-13  |  2.9 KB  |  126 lines

  1. % @(#) quadric.vrb,v 1.1 90/06/12 16:46:01 howards Exp %
  2.  
  3. %
  4. Copyright 1989, 1990, 1991 by Sun Microsystems, Inc. and the X Consortium.
  5.  
  6.                         All Rights Reserved
  7.  
  8. Permission to use, copy, modify, and distribute this software and its
  9. documentation for any purpose and without fee is hereby granted,
  10. provided that the above copyright notice appear in all copies and that
  11. both that copyright notice and this permission notice appear in
  12. supporting documentation, and that the names of Sun Microsystems,
  13. the X Consortium, and MIT not be used in advertising or publicity
  14. pertaining to distribution of the software without specific, written
  15. prior permission.
  16.  
  17. SUN MICROSYSTEMS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
  18. INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT
  19. SHALL SUN MICROSYSTEMS BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
  20. DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  21. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  22. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  23. SOFTWARE.
  24. %
  25.  
  26.  
  27. read_geometry_file "parab.geo";
  28.  
  29. view_orientation3
  30. 1         % Store View Orientation matrix here     %
  31. 0 0 0     % View Reference Point (WC)             %
  32. 1 1 1     % View Plane Normal (WC)                 %
  33. 0 1 0     % View Up vector (WC)                     %
  34. ;
  35.  
  36. view_mapping3
  37. 2                % Store View Mapping matrix here    %
  38. -20 20 -20 20     % View Window in VRC                %
  39. perspective        % Projection type                    %
  40. 0 0 1000        % Projection Reference Point in VRC %
  41. 40                % Front Clipping Location (VRC)        %
  42. -40                % Back Clipping Location (VRC)        %
  43. ;
  44.  
  45. define_view_specification
  46. 1                % View Table entry ID                    %
  47. 1                % ID of stored view orientation matrix    %
  48. 2                % ID of stored view mapping matrix        %
  49. xy_clip         % Disable XY Clipping                    %
  50. front_clip         % Disable Front Clipping                %
  51. back_clip        % Disable Back Clipping                    %
  52. 0 1                % X extrema of view area                %
  53. 0 1                % Y extrema of view area                %
  54. ;
  55.  
  56. identity3 11;
  57.  
  58. rotate_xyz3 
  59. 21     % Target matrix table ID %
  60. 6     % X axis rotation in degrees %
  61. 0     % Y axis rotation in degrees %
  62. 0     % Z axis rotation in degrees %
  63. replace
  64. ;
  65.  
  66. rotate_xyz3 
  67. 22     % Target matrix table ID %
  68. 0     % X axis rotation in degrees %
  69. 6     % Y axis rotation in degrees %
  70. 0     % Z axis rotation in degrees %
  71. replace
  72. ;
  73.  
  74. rotate_xyz3 
  75. 23     % Target matrix table ID %
  76. 0     % X axis rotation in degrees %
  77. 0     % Y axis rotation in degrees %
  78. 6     % Z axis rotation in degrees %
  79. replace
  80. ;
  81.  
  82. rotate_xyz3 
  83. 24     % Target matrix table ID %
  84. 6     % X axis rotation in degrees %
  85. 6     % Y axis rotation in degrees %
  86. 6     % Z axis rotation in degrees %
  87. replace
  88. ;
  89.  
  90. scale3
  91. 31    % Target matrix table ID    %
  92. .5
  93. .5
  94. .5
  95. replace
  96. ;
  97.  
  98. scale3
  99. 32    % Target matrix table ID    %
  100. 2
  101. 2
  102. 2
  103. replace
  104. ;
  105. hlhs_removal hlhs_enable;
  106. %%
  107. %%
  108. begin_test 360;
  109.     active_view 1;
  110.     apply_to_global3 11;
  111.     execute_structure 21;
  112.  
  113.     concat_matrix3 21 11 preconcat; 
  114. end_test;
  115. %%
  116. %%
  117. begin_test 360;
  118.     active_view 1;
  119.     apply_to_global3 11;
  120.     execute_structure 22;
  121.  
  122.     concat_matrix3 21 11 preconcat; 
  123. end_test;
  124. %%
  125. %%
  126.