home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-3.iso / Graphics / 3d / Rotation.1.0.README < prev    next >
Encoding:
Text File  |  1992-08-16  |  9.1 KB  |  189 lines

  1.                  3-d_Rotation
  2.         Douglas M. Bates (bates@stat.wisc.edu)
  3.           Murray K. Clayton (clayton@stat.wisc.edu)
  4. 0. Summary
  5.  
  6. 3-d_Rotation is an application for displaying and rotating
  7. 3-dimensional data.  It allows the user to plot lines, points, both,
  8. or neither (see below).  This readme file explains: How to Work It,
  9. How It Works, How We Wish It Would Work (things to add), and What
  10. Doesn't Work (Bugs).
  11.  
  12. This package is free software; you can redistribute it and/or modify
  13. it under the terms of the GNU General Public License as published by
  14. the Free Software Foundation; either version 1, or (at your option)
  15. any later version.
  16.  
  17. This package is distributed in the hope that it will be useful, but
  18. WITHOUT ANY WARRANTY; without even the implied warranty of
  19. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  20. General Public License for more details.
  21.  
  22. You should have received a copy of the GNU General Public License
  23. along with this program (in file COPYING); if not, write to the Free
  24. Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  A
  25. copy of the GNU General Public License is also available when running
  26. the application by clicking on ``Info...'' in the main menu.
  27.  
  28. (Thanks for Jacob Gore (jacob@gore.com) for providing the GNU License
  29. Panel.)
  30.  
  31. 1.  How To Work It
  32.  
  33. Data must be arranged in an ascii file with extension .dat , .data ,
  34. or .3d .  The data must be in 3 columns, each line of data
  35. corresponding to a point in 3-space.  The first column corresponds to
  36. the ``x'' coordinate, the second column corresponds to the ``y''
  37. coordinate, and the third column corresponds to the ``z'' coordinate.
  38.  
  39. Data may be plotted as points, lines, both, or neither.  To plot data
  40. as points, the word ``points'' (or, in fact, any word beginning with P
  41. or p) must be on a separate line before the data to be plotted as
  42. points.  (To be precise, the plotted points will appear as small
  43. circles.) Using the word ``lines'' instead will result in a series of
  44. connected line segments with endpoints given by the coordinates in the
  45. data file.  Using ``both'' will put a small circle at the endpoints of
  46. each line segment.
  47.  
  48. When ``neither'' is used, the data will not be plotted but will be
  49. used to determine the scaling of the plot.  Each axis is scaled to
  50. accomodate the range of all the data in that column from the file.
  51. You can force an unusual scaling by adding points under ``neither''.
  52.  
  53. The data file can be opened in the usual way by selecting ``File'' from
  54. the main menu and then ``Open'' from the submenu (or Command-o).
  55.  
  56. Clicking the ``Axes'' button will cause axes to be displayed.  Note
  57. that when originally opened, the x axis lies horizontally, the z
  58. axis lies vertically, and the y axis runs ``into'' the picture (a
  59. right-hand system).  Clicking the ``Cube'' button causes a cube to
  60. be displayed.  This is the default when the application starts up.
  61. Both axes and the cube can be displayed, or neither.
  62.  
  63. The sliders allow rotating the data:  the phi slider changes the
  64. elevation angle; the theta slider changes the azimuth.  The delta
  65. slider changes the ``viewing distance.''  To show the current values
  66. of phi, theta, and delta, click the ``Show Angles'' button.  The
  67. ``Reset Button'' will reset these values.  Specific values of phi,
  68. theta, or delta may also be typed into the forms at the top of the
  69. 3-d Rotation window.
  70.  
  71. Opening a new data file will automatically release the current data
  72. and reset the values of phi, theta, and delta.
  73.  
  74. The Print menu item prints the current contents of the view.  It can
  75. also be used to save an encapsulated PostScript version of the view.
  76. You can save the PostScript to the pasteboard instead using the Copy
  77. item in the Edit submenu.   
  78.  
  79. 2.  How It Works
  80.  
  81. 3-d_Rotation relies on a PerspMat class of objects, an AzimuthMat
  82. class of objects, and a custom view called CubeView.
  83.  
  84. PerspMat inherits from Object, and provides perspective projections of
  85. 3-d coordinates onto a 2-dimensional plane.  It includes methods for
  86. translating, scaling, rotation around each of the coordinate axes (x,
  87. y, and z) and providing perspective based on the viewer's distance
  88. from the item being viewed.  The approach involves transforming
  89. homogeneous coordinates through matrix manipulations as described, for
  90. example, in chapters 7 and 8 of Foley and Van Dam (1982) Fundamentals
  91. of Interactive Computer Graphics, Addison-Wesley, Reading, Mass.  For
  92. the purposes of viewing the projected data, there are 2 methods:
  93. render: and as_DPSpath:.  render fills a 3-dimensional array of arrays
  94. of floats with the projected coordinates while as_DPSpath projects the
  95. (x,y,z) values and stores the two projected coordinates in the order
  96. (u1,v1,u2,v2,...).  This is the type of structure used in the system
  97. function DPSDoUserPath.  as_DPSpath comes in two forms, the second
  98. taking an additional argument to offset:.  We added that method so we
  99. could plot points more conveniently.
  100.  
  101. AzimuthMat inherits from PerspMat, and is a class of pespective
  102. matrices where the viewpoint is determined by the azimuth angle
  103. (theta), the elevation angle (phi), and a distance to the viewpoint.
  104. It sets limits to correspond to the range of the three coordinates,
  105. and rescales them to lie in the interval [-1, 1].
  106.  
  107. Of course, PerspMat and AzimuthMat could be useful beyond the current
  108. purposes.  Since we need to change the transformation and recalculate
  109. the projected positions of the data very quickly to get the appearance
  110. of smooth rotations, the code in these classes favors efficiency over
  111. readability.
  112.  
  113. Finally, CubeView inherits from View, and imports AzimuthMat.
  114. CubeView contains the methods for actually getting the projected image
  115. onto the screen.  The factory methods and the methods for
  116. communicating with the sliders and buttons of the interface are fairly
  117. straightforward.  The setlimits: method uses the setlimits: method of
  118. AzimuthMat to rescale the data, and also constructs the axes and cube
  119. displays.  The drawSelf method puts the image onto the screen.  Two
  120. approaches are used.  For displaying the cube, the axes, or sets of
  121. connected line segments, the DPSDoUserPath function is used.  The
  122. as_DPSpath method of AzimuthMat is used to create the array needed by
  123. DPSDoUserPath as described above.  This seems to work very quickly.
  124. We had more problems in finding a way to put up a set of unconnected
  125. points quickly.  The approach we finally settled on is this: first, a
  126. tiff image was created using Icon (which, incidentally, seems to have
  127. a lot of bugs in it).  The image consists of a ``circle'' in a 5
  128. pixels by 5 pixels rectangle.  Some shading was used to produce an
  129. image that looks ``rounder'' than simply using the arc command of
  130. PostScript.  The tiff image is stored as a bitmap object ``dot'' in
  131. CubeView.  Next, the second version of as_DPSpath: in AzimuthMat is
  132. used to create an array consisting of the centers of the circles as
  133. they are to appear on the screen, again in the form u1, v1, u2, v2,
  134. etc.  However, the centers are offset by the offset method by the
  135. amount 2.5*2/384.  The 384 is the width, in pixels, of the customview
  136. in the 3-d_Rotation window, 2 is the width in the local coordinate
  137. system, and 2.5 is half the width of the rectangle containing the
  138. bitmap.  Finally, the pswrap dotAt pushes this array onto the
  139. PostScript stack and composits the bitmap.  (Thanks to Carl Sutter at
  140. USC for information on using Bitmap objects.)
  141.  
  142. We experimented with some other methods for getting the points up
  143. quickly, but none seems to be as fast as the above.  Even still,
  144. things start to slow down appreciably if the number of points to
  145. be plotted is large.  (To seem this, change all occurrences of
  146. ``lines'' to ``points'' in sample.3d and try dragging the theta or
  147. phi slider quickly.)
  148.  
  149. To add Print and Edit/Copy menu items, as suggested by Dan McCreary
  150. from NeXT, we had to create a PostScript-only version of dotAt that
  151. drew the points as PostScript circles.
  152.  
  153.  
  154. 3.  How We Wish It Would Work
  155.  
  156. Things to do:
  157.  
  158. a.  Allow automatic rocking or rolling of the image using a
  159.     DPSTimedEntry.  (Similar to the Motor button of the Molecule demo
  160.     application.) 
  161.  
  162. b.  Add an edit window for viewing and editing the raw data.
  163.  
  164. c.  Allow the use of many different plotting symbols (and
  165.     thus highlighting of points).
  166.  
  167. d.  Allow data files to have k>3 columns, and allow interactive
  168.     assignment of x, y, and z axes to any three given columns.
  169.  
  170. e.  Use the DSP for rendering the data points.  That is, scale the data
  171.     values so they are in the range -1 to 1 and convert them to the 24
  172.     bit DSP format.  When a new transformation matrix is determined,
  173.     use the DSP to do the linear algebra in a DSPrender: method.  We
  174.     imagine this will be faster than using floating point operations
  175.     as we do now.  For lines this may produce smoother rotations.  It
  176.     seems that for points, though, actually drawing the points in the
  177.     window is slower than calculating where to draw them.
  178.  
  179. f.  Allow the window to be resized.
  180.  
  181.  
  182. 4.  Things That Don't Work
  183.  
  184. a.  A data file with line 1 containing 'points' line 2 blank, and
  185.     line 3 with some data produces the error message ``First line of ...
  186.     does not contain numeric data,'' which is misleading, since, although it
  187.     does identify an error in the data file, it's the wrong error.
  188.  
  189.