Revision: 71147
          http://sourceforge.net/p/brlcad/code/71147
Author:   sharannyn
Date:     2018-07-11 07:29:08 +0000 (Wed, 11 Jul 2018)
Log Message:
-----------
Add doxygen comments for grid related structures in include/analyze.h

Modified Paths:
--------------
    brlcad/trunk/include/analyze.h

Modified: brlcad/trunk/include/analyze.h
===================================================================
--- brlcad/trunk/include/analyze.h      2018-07-10 23:23:13 UTC (rev 71146)
+++ brlcad/trunk/include/analyze.h      2018-07-11 07:29:08 UTC (rev 71147)
@@ -73,11 +73,20 @@
  *     Grid specific structures
  */
 
+/**
+ * This structure acts a function pointer table for grid generating functions
+ */
+
 struct grid_generator_functions {
     int (*next_ray)(struct xray *rayp, void *grid_context);
     double (*grid_cell_width)(void *grid_context);
 };
 
+/**
+ * This structure is the context passed to the grid generating functions for
+ * the rectangular grid type.
+ */
+
 struct rectangular_grid {
     vect_t ray_direction;
     point_t start_coord;

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
BRL-CAD Source Commits mailing list
brlcad-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to