@@ -93,10 +93,10 @@ PBAT_HOST_DEVICE bool PointTetrahedron3D(
93
93
* @brief Tests for overlap between sphere (C1,R1) and sphere (C2,R2).
94
94
* @tparam TMatrixC1 Center matrix type of the first sphere
95
95
* @tparam TMatrixC2 Center matrix type of the second sphere
96
- * @param c1 Center of the first sphere
97
- * @param r1 Radius of the first sphere
98
- * @param c2 Center of the second sphere
99
- * @param r2 Radius of the second sphere
96
+ * @param C1 Center of the first sphere
97
+ * @param R1 Radius of the first sphere
98
+ * @param C2 Center of the second sphere
99
+ * @param R2 Radius of the second sphere
100
100
* @return True if the spheres overlap, false otherwise
101
101
*/
102
102
template <mini::CMatrix TMatrixC1, mini::CMatrix TMatrixC2>
@@ -478,16 +478,16 @@ PBAT_HOST_DEVICE bool Tetrahedra(
478
478
TMatrixD2 const & D2);
479
479
480
480
/* *
481
- * @brief Tests for overlap between a triangle ABC and a sphere with center c of radius R
481
+ * @brief Tests for overlap between a triangle ABC and a sphere with center SC of radius R
482
482
* @tparam TMatrixA Vertex A matrix type
483
483
* @tparam TMatrixB Vertex B matrix type
484
484
* @tparam TMatrixC Vertex C matrix type
485
485
* @tparam TMatrixSC Center matrix type of the sphere
486
486
* @param A Vertex A of the triangle
487
487
* @param B Vertex B of the triangle
488
488
* @param C Vertex C of the triangle
489
- * @param c Center of the sphere
490
- * @param r Radius of the sphere
489
+ * @param SC Center of the sphere
490
+ * @param R Radius of the sphere
491
491
* @return True if the triangle and sphere overlap, false otherwise
492
492
*/
493
493
template <
@@ -503,7 +503,7 @@ PBAT_HOST_DEVICE bool TriangleSphere(
503
503
typename TMatrixSC::ScalarType R);
504
504
505
505
/* *
506
- * @brief Tests for overlap between a tetrahedron ABCD and a sphere with center c of radius R
506
+ * @brief Tests for overlap between a tetrahedron ABCD and a sphere with center SC of radius R
507
507
* @tparam TMatrixA Vertex A matrix type
508
508
* @tparam TMatrixB Vertex B matrix type
509
509
* @tparam TMatrixC Vertex C matrix type
@@ -513,8 +513,8 @@ PBAT_HOST_DEVICE bool TriangleSphere(
513
513
* @param B Vertex B of the tetrahedron
514
514
* @param C Vertex C of the tetrahedron
515
515
* @param D Vertex D of the tetrahedron
516
- * @param c Center of the sphere
517
- * @param r Radius of the sphere
516
+ * @param SC Center of the sphere
517
+ * @param R Radius of the sphere
518
518
* @return True if the tetrahedron and sphere overlap, false otherwise
519
519
*/
520
520
template <
0 commit comments