diff src/graphics/opengl/gl-render.h @ 7869:e6d5532f760e

style fixes
author John W. Eaton <jwe@octave.org>
date Thu, 05 Jun 2008 01:06:29 -0400
parents 35e8d6199455
children
line wrap: on
line diff
--- a/src/graphics/opengl/gl-render.h	Thu Jun 05 00:23:04 2008 -0400
+++ b/src/graphics/opengl/gl-render.h	Thu Jun 05 01:06:29 2008 -0400
@@ -111,19 +111,24 @@
 				 bool filled) const;
 
 private:
-  /* the backend associated with the figure being rendered */
+  // the backend associated with the figure being rendered
   graphics_backend backend;
-  /* axes transformation data */
+
+  // axes transformation data
   graphics_xform xform;
-  /* axis limits in model scaled coordinate */
+
+  // axis limits in model scaled coordinate
   double xmin, xmax;
   double ymin, ymax;
   double zmin, zmax;
-  /* Z projection limits in windows coordinate */
+
+  // Z projection limits in windows coordinate
   double xZ1, xZ2;
-  /* call lists identifiers for markers */
+
+  // call lists identifiers for markers
   unsigned int marker_id, filled_marker_id;
-  /* camera information for primitive sorting */
+
+  // camera information for primitive sorting
   ColumnVector camera_pos, camera_dir;
 
 private: