Skip to content

Commit 38d60c7

Browse files
committed
Enhance documentation for intersection volume computation between AABBs
1 parent 3b608e2 commit 38d60c7

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

source/pbat/geometry/IntersectionQueries.h

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,14 @@ PBAT_HOST_DEVICE auto TriangleBarycentricCoordinates(
100100

101101
/**
102102
* @brief Computes the intersection volume between 2 axis aligned bounding boxes
103-
* @param aabb1 Axis aligned bounding box 1
104-
* @param aabb2 Axis aligned bounding box 2
103+
* @tparam TMatrixL1 Matrix type of the lower bound of AABB 1
104+
* @tparam TMatrixU1 Matrix type of the upper bound of AABB 1
105+
* @tparam TMatrixL2 Matrix type of the lower bound of AABB 2
106+
* @tparam TMatrixU2 Matrix type of the upper bound of AABB 2
107+
* @param L1 The lower bound of AABB 1
108+
* @param U1 The upper bound of AABB 1
109+
* @param L2 The lower bound of AABB 2
110+
* @param U2 The upper bound of AABB 2
105111
* @return The intersection volume between the 2 AABBs
106112
*/
107113
template <

0 commit comments

Comments
 (0)