| 46 | } |
| 47 | |
| 48 | FSegment::FSegment(const FVector& InA, const FVector& InB, const double Expansion) |
| 49 | : A(InA), B(InB), Direction((B - A).GetSafeNormal()) |
| 50 | { |
| 51 | Bounds += A; |
| 52 | Bounds += B; |
| 53 | Bounds = Bounds.ExpandBy(Expansion); |
| 54 | } |
| 55 | |
| 56 | FBox GetLocalBounds(const FPCGPoint& Point, const EPCGExPointBoundsSource Source) |
| 57 | { |
nothing calls this directly
no outgoing calls
no test coverage detected