Photon Engine 2.0.0-beta
A physically based renderer.
|
Wide BVH acceleration structure supporting arbitrary branch factor. More...
#include <TWideBvhIntersector.h>
Public Member Functions | |
void | update (TSpanView< const Intersectable * > intersectables) override |
bool | isIntersecting (const Ray &ray, HitProbe &probe) const override |
Determine whether a given ray hits the object. | |
math::AABB3D | calcAABB () const override |
Calculates Axis-Aligned Bounding Box (AABB) of itself. | |
void | rebuildWithIntersectables (TSpanView< const Intersectable * > intersectables) |
Public Member Functions inherited from ph::Intersector | |
bool | reintersect (const Ray &ray, HitProbe &probe, const Ray &srcRay, HitProbe &srcProbe) const override |
Intersect the intersected object again with a different ray. | |
void | calcHitDetail (const Ray &ray, HitProbe &probe, HitDetail *out_detail) const override |
Calculates properties of a hit, such as coordinates and normal. | |
Public Member Functions inherited from ph::Intersectable | |
virtual | ~Intersectable ()=default |
virtual bool | isOccluding (const Ray &ray) const |
Determines whether this object blocks the ray. | |
virtual bool | mayOverlapVolume (const math::AABB3D &volume) const |
Conservatively checks whether this object overlaps a volume. | |
Wide BVH acceleration structure supporting arbitrary branch factor.
N | Branch factor of the BVH. |
Index | Type for buffer offsets. Types that can store a larger integer supports more intersectables. |
|
inlineoverridevirtual |
Calculates Axis-Aligned Bounding Box (AABB) of itself.
Implements ph::Intersector.
|
inlineoverridevirtual |
Determine whether a given ray hits the object.
Checks whether the specified ray intersects this intersectable. If there is an intersection, true
is returned and a brief hit report is stored inside the probe. If there is no intersection, false
is returned and the state of the probe is undefined. ray
and probe
can be used for obtaining hit detail if an intersection is found.
ray
and probe
). Implements ph::Intersector.
|
inline |
|
inlineoverridevirtual |
Implements ph::Intersector.