| 177 | } |
| 178 | |
| 179 | FPathEdge::FPathEdge(const int32 InStart, const int32 InEnd, const TArrayView<const FVector>& Positions, const double Expansion) |
| 180 | : Start(InStart), End(InEnd), AltStart(InStart) |
| 181 | { |
| 182 | Update(Positions, Expansion); |
| 183 | } |
| 184 | |
| 185 | void FPathEdge::Update(const TArrayView<const FVector>& Positions, const double Expansion) |
| 186 | { |
nothing calls this directly
no outgoing calls
no test coverage detected