Home | History | Annotate | Download | only in BVH

Lines Matching defs:Volume

55  *  \brief A simple bounding volume hierarchy based on AlignedBox
62 * This class provides a simple (as opposed to optimized) implementation of a bounding volume hierarchy analogous to a Kd-tree.
74 typedef AlignedBox<Scalar, Dim> Volume;
75 typedef std::vector<Volume, aligned_allocator<Volume> > VolumeList;
82 /** Given an iterator range over \a Object references, constructs the BVH. Requires that bounding_box(Object) return a Volume. */
89 * Requires that bounding_box(Object) return a Volume. */
130 /** Given an \a index of a node, on exit, \a outVBegin and \a outVEnd range over the indices of the volume children of the node
155 } else { //if the first child is a volume and the second is an object
164 inline const Volume &getVolume(Index index) const