atan2_utils.h
Go to the documentation of this file.
1 /*
2  * Copyright 2017-2020 Autoware Foundation. All rights reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
18 #ifndef POINTS_PREPROCESSOR_RAY_GROUND_FILTER__ATAN2_UTILS_H
19 #define POINTS_PREPROCESSOR_RAY_GROUND_FILTER__ATAN2_UTILS_H
20 
21 #include <cmath>
22 
24 constexpr float PI = 3.14159265359F;
26 constexpr float PI_2 = 1.5707963267948966F;
27 
46 float fast_atan2(float y, float x)
47 {
48  constexpr float scaling_constant = 0.28086f;
49 
50  if (x == 0.0f) {
51  // Special case atan2(0.0, 0.0) = 0.0
52  if (y == 0.0f) {
53  return 0.0f;
54  }
55 
56  // x is zero so we are either at pi/2 for (y > 0) or -pi/2 for (y < 0)
57  return ::std::copysign(PI_2, y);
58  }
59 
60  // Calculate quotient of y and x
61  float div = y / x;
62 
63  // Determine in which octants we can be, if |y| is smaller than |x| (|div|<1)
64  // then we are either in 1,4,5 or 8 else we are in 2,3,6 or 7.
65  if (fabsf(div) < 1.0f) {
66  // We are in 1,4,5 or 8
67 
68  float atan = div / (1.0f + scaling_constant * div * div);
69 
70  // If we are in 4 or 5 we need to add pi or -pi respectively
71  if (x < 0.0f) {
72  return ::std::copysign(PI, y) + atan;
73  }
74  return atan;
75  }
76 
77  // We are in 2,3,6 or 7
78  return ::std::copysign(PI_2, y) - div / (div * div + scaling_constant);
79 }
80 
81 
82 
83 #endif // POINTS_PREPROCESSOR_RAY_GROUND_FILTER__ATAN2_UTILS_H
fast_atan2
float fast_atan2(float y, float x)
Definition: atan2_utils.h:46
f
f
PI
constexpr float PI
pi
Definition: atan2_utils.h:24
PI_2
constexpr float PI_2
pi/2
Definition: atan2_utils.h:26


points_preprocessor
Author(s): n-patiphon , aohsato
autogenerated on Wed Mar 2 2022 00:12:07