|
|
|
| BOPTools_PairSelector () |
|
|
|
void | Clear () |
| Sorts the indices.
|
|
void | Sort () |
| Sorts the indices.
|
|
void | SetSame (const Standard_Boolean theIsSame) |
| Tells to selector that BVH trees are the same. If the flag is set to true the resulting vector will contain only unique pairs (mirrored pairs will be rejected, e.g. (1, 2) will be taken, (2, 1) will be rejected) and will not contain pairs in which IDs are the same (pair (1, 1) will be rejected). If it is required to have a full vector of pairs even for the same BVH trees, just keep the false value of this flag.
|
|
const std::vector< PairIDs > & | Pairs () const |
| Returns the list of accepted indices.
|
|
|
Basing on the bounding boxes of the nodes checks if the pair of nodes should be rejected.
|
virtual Standard_Boolean | RejectNode (const BVH_VecNd &theCMin1, const BVH_VecNd &theCMax1, const BVH_VecNd &theCMin2, const BVH_VecNd &theCMax2, Standard_Real &) const override |
| Checks if the pair of elements should be rejected.
|
|
Standard_Boolean | RejectElement (const Standard_Integer theID1, const Standard_Integer theID2) |
| Checks if the pair of elements should be rejected.
|
|
virtual Standard_Boolean | Accept (const Standard_Integer theID1, const Standard_Integer theID2) override |
| Checks and accepts the pair of elements.
|
|
| BVH_PairTraverse () |
|
void | SetBVHSets (BVH_BoxSet< Standard_Real, Dimension, Standard_Integer > *theBVHSet1, BVH_BoxSet< Standard_Real, Dimension, Standard_Integer > *theBVHSet2) |
|
virtual Standard_Boolean | RejectNode (const BVH_VecNt &theCornerMin1, const BVH_VecNt &theCornerMax1, const BVH_VecNt &theCornerMin2, const BVH_VecNt &theCornerMax2, Standard_Real &theMetric) const=0 |
| Leaf element acceptance. Returns true if the pair of elements is accepted, false otherwise.
|
|
Standard_Integer | Select () |
| Performs selection of the elements from two BVH trees by the rules defined in Accept/Reject methods. Returns the number of accepted pairs of elements.
|
|
Standard_Integer | Select (const opencascade::handle< BVH_Tree< Standard_Real, Dimension > > &theBVH1, const opencascade::handle< BVH_Tree< Standard_Real, Dimension > > &theBVH2) |
| Performs selection of the elements from two BVH trees by the rules defined in Accept/Reject methods. Returns the number of accepted pairs of elements.
|
|
virtual Standard_Boolean | IsMetricBetter (const Standard_Real &, const Standard_Real &) const |
|
virtual Standard_Boolean | RejectMetric (const Standard_Real &) const |
|
virtual Standard_Boolean | Stop () const |
|
template<int Dimension>
class BOPTools_PairSelector< Dimension >
Template Selector for selection of the elements from two BVH trees.