Skip to content

Commit

Permalink
Feature: Add getters for camera parameters #1419
Browse files Browse the repository at this point in the history
  • Loading branch information
Schwarzemann committed Jan 5, 2025
1 parent 9096141 commit 9973927
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions library/testing/TestSDKCamera.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ int TestSDKCamera(int argc, char* argv[])
if (dotProduct < epsilon)
{
std::cerr << "Dot product is lesser than epsilon, returning epsilon." << std::endl;
return epsilon;
return EXIT_FAILURE;
}

// Test roll
Expand Down Expand Up @@ -208,7 +208,7 @@ int TestSDKCamera(int argc, char* argv[])
if (dotProduct < epsilon)
{
std::cerr << "Dot product is lesser than epsilon, returning epsilon." << std::endl;
return epsilon;
return EXIT_FAILURE;
}

// Test elevation
Expand Down

0 comments on commit 9973927

Please sign in to comment.