home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / e / e002 / 1.ddi / 3D.CN_ / 3D.CN
Encoding:
Text File  |  1992-11-24  |  1.3 KB  |  83 lines

  1. menu -m  /* go to the matrix window */
  2.  
  3. menu 3 &Plot
  4.  
  5.  
  6. menu (3D-&Color Fill Surface) {
  7.     worksheet -p 242 mesh;
  8. }
  9.  
  10. menu (3D-&X Constant with Base) {
  11.     worksheet -p 242 xconst;
  12. }
  13.  
  14. menu (3D-&Y Constant with Base) {
  15.     worksheet -p 242 yconst;
  16. }
  17.  
  18. menu
  19.  
  20. menu (3D-Color &Map Surface) {
  21.     worksheet -p 242 cmap;
  22. }
  23.  
  24. mwnu
  25.  
  26. menu (3D-Wire Frame) {
  27.     worksheet -p 242 wirefrm;
  28. }
  29.  
  30. menu (3D-Wire Surface) {
  31.     worksheet -p 242 wireface;
  32. #Wire frame with semi-transparent nets
  33. }
  34.  
  35.  
  36.  
  37.  
  38.  
  39. menu -w /* go to the worksheet menu */
  40.  
  41. menu 4 Plot3D /* new plot 3d menu */
  42.  
  43. menu (&Scatter) {
  44.     if(selc2-selc1!=0 || selc1==0 || %(%H,@T,selc1) != 6) {
  45.         type -b You must select a single Z column first;
  46.         break 1;
  47.     };
  48.     
  49.     worksheet -P 240 3d;
  50. }
  51.  
  52. menu (&Trajectory) {
  53.     if(selc2-selc1!=0 || selc1==0 || %(%H,@T,selc1) != 6) {
  54.         type -b You must select a single Z column first;
  55.         break 1;
  56.     };
  57.     
  58.     worksheet -P 240 Traject;
  59. }
  60.  
  61. menu
  62.  
  63. menu (&Bars) {
  64.     worksheet -Plot ? Bar3d;
  65. #Plot Selected columns as a 3D bar chart
  66. }
  67.  
  68. menu (&Ribbons) {
  69.     worksheet -Plot ? Ribbon;
  70. #Plot Selected columns as a 3D ribbon chart
  71. }
  72.  
  73. menu (&Walls) {
  74.     worksheet -Plot ? Walls;
  75. #Plot Selected columns as a 3D ribbon chart
  76. }
  77.  
  78.  
  79. menu (Water Fall) {
  80.     worksheet -Plot ? water3d;
  81. #Plot the selected columns as 3D water fall plots
  82. }
  83.