Skip to content

Commit

Permalink
Formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
kring committed Sep 18, 2024
1 parent a37e455 commit 87a6fdd
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions Source/CesiumRuntime/Private/Tests/CesiumLoadQueryTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -372,8 +372,14 @@ bool FCesiumTerrainQueryMultipleQueries::RunTest(const FString& Parameters) {
const FVector& originalCoordinate =
queryObject.coordinateDegrees;

if (!FMath::IsNearlyEqual(originalCoordinate.X, newCoordinate.X, 1e-12) ||
!FMath::IsNearlyEqual(originalCoordinate.Y, newCoordinate.Y, 1e-12)) {
if (!FMath::IsNearlyEqual(
originalCoordinate.X,
newCoordinate.X,
1e-12) ||
!FMath::IsNearlyEqual(
originalCoordinate.Y,
newCoordinate.Y,
1e-12)) {
UE_LOG(
LogCesium,
Warning,
Expand Down

0 comments on commit 87a6fdd

Please sign in to comment.