| 9 | #define PCGEX_NAMESPACE PCGExPaths |
| 10 | |
| 11 | bool FPCGExPathOutputDetails::Validate(TArray<FPCGPoint>& InPathPoints) const |
| 12 | { |
| 13 | if (InPathPoints.Num() < 2) { return false; } |
| 14 | if (bRemoveSmallPaths && InPathPoints.Num() < MinPointCount) { return false; } |
| 15 | if (bRemoveLargePaths && InPathPoints.Num() > MaxPointCount) { return false; } |
| 16 | return true; |
| 17 | } |
| 18 | |
| 19 | void FPCGExPathClosedLoopDetails::Init() |
| 20 | { |