Photon Engine 2.0.0-beta
A physically based renderer.
Loading...
Searching...
No Matches
TBvhItemInfo.h
Go to the documentation of this file.
1#pragma once
2
4#include "Math/TVector3.h"
5
6namespace ph::math
7{
8
9template<typename Item>
10class TBvhItemInfo final
11{
12public:
15 Item item;
16
17 TBvhItemInfo() = default;
18 TBvhItemInfo(const AABB3D& aabb, Item item);
19};
20
21}// end namespace ph::math
22
Definition TBvhItemInfo.h:11
Item item
Definition TBvhItemInfo.h:15
AABB3D aabb
Definition TBvhItemInfo.h:13
Vector3R aabbCentroid
Definition TBvhItemInfo.h:14
Math functions and utilities.
Definition TransformInfo.h:10