Binary BVH node, containing its bounds and an index into its children or the primitives it contains.
By definition, inner BVH nodes do not contain primitives; only leaves do.
Public Types | |
using | Index = bvh::v2::Index<IndexBits, PrimCountBits> |
using | Scalar = T |
Public Member Functions | |
Node ()=default | |
BVH_ALWAYS_INLINE BBox< T, Dim > | get_bbox () const |
BVH_ALWAYS_INLINE Vec< T, Dim > | get_max_bounds (const Octant &octant) const |
BVH_ALWAYS_INLINE Vec< T, Dim > | get_min_bounds (const Octant &octant) const |
BVH_ALWAYS_INLINE std::pair< T, T > | intersect_fast (const Ray< T, Dim > &ray, const Vec< T, Dim > &inv_dir, const Vec< T, Dim > &inv_org, const Octant &octant) const |
BVH_ALWAYS_INLINE std::pair< T, T > | intersect_robust (const Ray< T, Dim > &ray, const Vec< T, Dim > &inv_dir, const Vec< T, Dim > &inv_dir_pad, const Octant &octant) const |
Robust ray-node intersection routine. See "Robust BVH Ray Traversal", by T. Ize. | |
BVH_ALWAYS_INLINE bool | is_leaf () const |
bool | operator!= (const Node &other) const |
bool | operator== (const Node &other) const |
BVH_ALWAYS_INLINE void | serialize (OutputStream &stream) const |
BVH_ALWAYS_INLINE void | set_bbox (const BBox< T, Dim > &bbox) |
Static Public Member Functions | |
static BVH_ALWAYS_INLINE Node | deserialize (InputStream &stream) |
Public Attributes | |
std::array< T, Dim *2 > | bounds |
Bounds of the node, laid out in memory as [min_x, max_x, min_y, max_y, ...] . | |
Index | index |
Index to the children of an inner node, or to the primitives for a leaf node. | |
Static Public Attributes | |
static constexpr size_t | dimension = Dim |
static constexpr size_t | index_bits = IndexBits |
static constexpr size_t | prim_count_bits = PrimCountBits |
Static Private Member Functions | |
static BVH_ALWAYS_INLINE std::pair< T, T > | make_intersection_result (const Ray< T, Dim > &ray, const Vec< T, Dim > &tmin, const Vec< T, Dim > &tmax) |
#include <bvh/v2/node.h>
using bvh::v2::Node< T, Dim, IndexBits, PrimCountBits >::Index = bvh::v2::Index<IndexBits, PrimCountBits> |
using bvh::v2::Node< T, Dim, IndexBits, PrimCountBits >::Scalar = T |
|
default |
|
inlinestatic |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inlinestaticprivate |
|
inline |
|
inline |
|
inline |
|
inline |
std::array<T, Dim * 2> bvh::v2::Node< T, Dim, IndexBits, PrimCountBits >::bounds |
Bounds of the node, laid out in memory as [min_x, max_x, min_y, max_y, ...]
.
Users should not really depend on a specific order and instead use get_bbox()
and extract the min
and/or max
components accordingly.
|
staticconstexpr |
Index bvh::v2::Node< T, Dim, IndexBits, PrimCountBits >::index |
|
staticconstexpr |
|
staticconstexpr |