From 1e53f6ed29fd9a6ba56dabbf63fc3db6d76c6629 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Tue, 8 Mar 2011 21:41:17 -0500 Subject: Add some missing documentation. --- libdimension/prtree.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'libdimension/prtree.h') diff --git a/libdimension/prtree.h b/libdimension/prtree.h index c69d1ec..86707cf 100644 --- a/libdimension/prtree.h +++ b/libdimension/prtree.h @@ -31,10 +31,12 @@ #include +/** A priority R-tree; the spatial subdivision method used for intersection + queries against the scene graph. */ typedef struct dmnsn_prtree { - dmnsn_bounding_box bounding_box; - dmnsn_array *unbounded; - dmnsn_array *bounded; + dmnsn_bounding_box bounding_box; /**< The bounding box for the whole scene. */ + dmnsn_array *unbounded; /**< The unbounded objects. */ + dmnsn_array *bounded; /**< A PR-tree of the bounded objects. */ } dmnsn_prtree; /** Create a PR-tree. */ -- cgit v1.2.3