1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251
|
/*
* Copyright (C) 2012 Open Source Robotics Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
#ifndef IGNITION_MATH_ANGLE_HH_
#define IGNITION_MATH_ANGLE_HH_
#include <iostream>
#include <ignition/math/Helpers.hh>
#include <ignition/math/config.hh>
/// \def IGN_RTOD(d)
/// \brief Macro that converts radians to degrees
/// \param[in] r radians
/// \return degrees
#define IGN_RTOD(r) ((r) * 180 / IGN_PI)
/// \def IGN_DTOR(d)
/// \brief Converts degrees to radians
/// \param[in] d degrees
/// \return radians
#define IGN_DTOR(d) ((d) * IGN_PI / 180)
/// \def IGN_NORMALIZE(a)
/// \brief Macro that normalizes an angle in the range -Pi to Pi
/// \param[in] a angle
/// \return the angle, in range
#define IGN_NORMALIZE(a) (atan2(sin(a), cos(a)))
namespace ignition
{
namespace math
{
// Inline bracket to help doxygen filtering.
inline namespace IGNITION_MATH_VERSION_NAMESPACE {
//
/// \class Angle Angle.hh ignition/math/Angle.hh
/// \brief The Angle class is used to simplify and clarify the use of
/// radians and degrees measurements. A default constructed Angle instance
/// has a value of zero radians/degrees.
///
/// Unless otherwise specified, the Angle class assumes units are in
/// radians. An example of this are the stream insertion (<<) and
/// extraction (>>) operators.
///
/// ## Example
///
/// \snippet examples/angle_example.cc complete
class IGNITION_MATH_VISIBLE Angle
{
/// \brief An angle with a value of zero.
/// Equivalent to math::Angle(0).
public: static const Angle Zero;
/// \brief An angle with a value of Pi.
/// Equivalent to math::Angle(IGN_PI).
public: static const Angle Pi;
/// \brief An angle with a value of Pi * 0.5.
/// Equivalent to math::Angle(IGN_PI * 0.5).
public: static const Angle HalfPi;
/// \brief An angle with a value of Pi * 2.
/// Equivalent to math::Angle(IGN_PI * 2).
public: static const Angle TwoPi;
/// \brief Default constructor that initializes an Angle to zero
/// radians/degrees.
public: Angle();
/// \brief Conversion constructor that initializes an Angle to the
/// specified radians. This constructor supports implicit conversion
/// of a double to an Angle. For example:
///
/// \code
/// Angle a = 3.14;
/// \endcode
//
/// \param[in] _radian The radians used to initialize this Angle.
// cppcheck-suppress noExplicitConstructor
public: Angle(const double _radian);
/// \brief Copy constructor that initializes this Angle to the value
/// contained in the _angle parameter.
/// \param[in] _angle Angle to copy
public: Angle(const Angle &_angle);
/// \brief Destructor
public: virtual ~Angle();
/// \brief Set the value from an angle in radians.
/// \param[in] _radian Radian value.
/// \sa SetRadian(double)
public: void Radian(double _radian);
/// \brief Set the value from an angle in radians.
/// \param[in] _radian Radian value.
public: void SetRadian(double _radian);
/// \brief Set the value from an angle in degrees
/// \param[in] _degree Degree value
/// \sa SetDegree(double)
public: void Degree(double _degree);
/// \brief Set the value from an angle in degrees
/// \param[in] _degree Degree value
public: void SetDegree(double _degree);
/// \brief Get the angle in radians.
/// \return Double containing the angle's radian value.
public: double Radian() const;
/// \brief Get the angle in degrees.
/// \return Double containing the angle's degree value.
public: double Degree() const;
/// \brief Normalize the angle in the range -Pi to Pi. This
/// modifies the value contained in this Angle instance.
/// \sa Normalized()
public: void Normalize();
/// \brief Return the normalized angle in the range -Pi to Pi. This
/// does not modify the value contained in this Angle instance.
/// \return The normalized value of this Angle.
public: Angle Normalized() const;
/// \brief Return the angle's radian value
/// \return double containing the angle's radian value
public: double operator()() const;
/// \brief Dereference operator
/// \return Double containing the angle's radian value
public: inline double operator*() const
{
return value;
}
/// \brief Subtraction operator, result = this - _angle.
/// \param[in] _angle Angle for subtraction.
/// \return The new angle.
public: Angle operator-(const Angle &_angle) const;
/// \brief Addition operator, result = this + _angle.
/// \param[in] _angle Angle for addition.
/// \return The new angle.
public: Angle operator+(const Angle &_angle) const;
/// \brief Multiplication operator, result = this * _angle.
/// \param[in] _angle Angle for multiplication.
/// \return The new angle
public: Angle operator*(const Angle &_angle) const;
/// \brief Division operator, result = this / _angle.
/// \param[in] _angle Angle for division.
/// \return The new angle.
public: Angle operator/(const Angle &_angle) const;
/// \brief Subtraction set operator, this = this - _angle.
/// \param[in] _angle Angle for subtraction.
/// \return The new angle.
public: Angle operator-=(const Angle &_angle);
/// \brief Addition set operator, this = this + _angle.
/// \param[in] _angle Angle for addition.
/// \return The new angle.
public: Angle operator+=(const Angle &_angle);
/// \brief Multiplication set operator, this = this * _angle.
/// \param[in] _angle Angle for multiplication.
/// \return The new angle.
public: Angle operator*=(const Angle &_angle);
/// \brief Division set operator, this = this / _angle.
/// \param[in] _angle Angle for division.
/// \return The new angle.
public: Angle operator/=(const Angle &_angle);
/// \brief Equality operator, result = this == _angle.
/// \param[in] _angle Angle to check for equality.
/// \return True if this == _angle.
public: bool operator==(const Angle &_angle) const;
/// \brief Inequality operator
/// \param[in] _angle Angle to check for inequality.
/// \return True if this != _angle.
public: bool operator!=(const Angle &_angle) const;
/// \brief Less than operator.
/// \param[in] _angle Angle to check.
/// \return True if this < _angle.
public: bool operator<(const Angle &_angle) const;
/// \brief Less than or equal operator.
/// \param[in] _angle Angle to check.
/// \return True if this <= _angle.
public: bool operator<=(const Angle &_angle) const;
/// \brief Greater than operator.
/// \param[in] _angle Angle to check.
/// \return True if this > _angle.
public: bool operator>(const Angle &_angle) const;
/// \brief Greater than or equal operator.
/// \param[in] _angle Angle to check.
/// \return True if this >= _angle.
public: bool operator>=(const Angle &_angle) const;
/// \brief Stream insertion operator. Outputs in radians.
/// \param[in] _out Output stream.
/// \param[in] _a Angle to output.
/// \return The output stream.
public: friend std::ostream &operator<<(std::ostream &_out,
const ignition::math::Angle &_a)
{
_out << _a.Radian();
return _out;
}
/// \brief Stream extraction operator. Assumes input is in radians.
/// \param[in,out] _in Input stream.
/// \param[out] _a Angle to read value into.
/// \return The input stream.
public: friend std::istream &operator>>(std::istream &_in,
ignition::math::Angle &_a)
{
// Skip white spaces
_in.setf(std::ios_base::skipws);
_in >> _a.value;
return _in;
}
/// The angle in radians
private: double value{0};
};
}
}
}
#endif
|