| 296 | } |
| 297 | |
| 298 | double GetArcLength(const double R, const double StartAngleRadians, const double EndAngleRadians) |
| 299 | { |
| 300 | return R * FMath::Abs(FMath::Fmod(EndAngleRadians, TWO_PI) - FMath::Fmod(StartAngleRadians, TWO_PI)); |
| 301 | } |
| 302 | |
| 303 | double GetPerpendicularDistance(const FVector& A, const FVector& B, const FVector& C) |
| 304 | { |