Parasol Planning Library (PPL)
BoundaryIntersection.h
Go to the documentation of this file.
1 #ifndef PMPL_BOUNDARY_INTERSECTION_H_
2 #define PMPL_BOUNDARY_INTERSECTION_H_
3 
4 #include <cstddef>
5 #include <vector>
6 
7 class Boundary;
8 
9 
18 std::vector<double>
19 RejectionSampleIntersection(const Boundary* const _b1, const Boundary* const _b2,
20  const size_t _maxAttempts = 10, size_t* const _attempts = nullptr) noexcept;
21 
22 
23 #endif
std::vector< double > RejectionSampleIntersection(const Boundary *const _b1, const Boundary *const _b2, const size_t _maxAttempts=10, size_t *const _attempts=nullptr) noexcept
Definition: BoundaryIntersection.cpp:8
Definition: Boundary.h:30