ad_physics
Distance2DValidInputRange.hpp
Go to the documentation of this file.
1 /*
2  * ----------------- BEGIN LICENSE BLOCK ---------------------------------
3  *
4  * Copyright (C) 2018-2020 Intel Corporation
5  *
6  * SPDX-License-Identifier: MIT
7  *
8  * ----------------- END LICENSE BLOCK -----------------------------------
9  */
10 
18 #pragma once
19 
20 #include <cmath>
21 #include <limits>
24 #include "spdlog/fmt/ostr.h"
25 #include "spdlog/spdlog.h"
26 
37 inline bool withinValidInputRange(::ad::physics::Distance2D const &input, bool const logErrors = true)
38 {
39  // check for generic member input ranges
40  bool inValidInputRange = true;
41  inValidInputRange = withinValidInputRange(input.x, logErrors) && withinValidInputRange(input.y, logErrors);
42  if (!inValidInputRange && logErrors)
43  {
44  spdlog::error("withinValidInputRange(::ad::physics::Distance2D)>> {} has invalid member",
45  input); // LCOV_EXCL_BR_LINE
46  }
47 
48  return inValidInputRange;
49 }
ad::physics::Distance2D
DataType Distance2D.
Definition: Distance2D.hpp:39
withinValidInputRange
bool withinValidInputRange(::ad::physics::Distance2D const &input, bool const logErrors=true)
check if the given Distance2D is within valid input range
Definition: Distance2DValidInputRange.hpp:37
Distance2D.hpp
DistanceValidInputRange.hpp