Navigation
API > API/Runtime > API/Runtime/GeometryCore > API/Runtime/GeometryCore/Spatial > API/Runtime/GeometryCore/Spatial/FGeometrySet3
References
| Module | GeometryCore |
| Header | /Engine/Source/Runtime/GeometryCore/Public/Spatial/GeometrySet3.h |
| Include | #include "Spatial/GeometrySet3.h" |
template<typename PredicateType, typename IntContainerType>
bool FindAllPointsSatisfying
(
PredicateType Predicate,
IntContainerType & PointIDsOut
) const
Remarks
Fills PointIDsOut with point IDs of points that satisfy the given predicate.
Parameters
| Name | Description |
|---|---|
| Predicate | A lambda or function that takes in a const FVector3d& and returns true when the point's ID should be added to PointIDsOut. |
| PointIDsOut | Output list or set. Must have an Add(int) method. |