/usr/include/ETL/_angle.h is in etl-dev 0.04.17-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 | /* ========================================================================
** Extended Template and Library
** Angle Abstraction Class Implementation
** $Id$
**
** Copyright (c) 2002 Robert B. Quattlebaum Jr.
** Copyright (c) 2007 Chris Moore
**
** This package is free software; you can redistribute it and/or
** modify it under the terms of the GNU General Public License as
** published by the Free Software Foundation; either version 2 of
** the License, or (at your option) any later version.
**
** This package is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
** General Public License for more details.
**
** === N O T E S ===========================================================
**
** This is an internal header file, included by other ETL headers.
** You should not attempt to use it directly.
**
** ========================================================================= */
/* === S T A R T =========================================================== */
#ifndef __ETL__ANGLE_H
#define __ETL__ANGLE_H
/* === H E A D E R S ======================================================= */
#include <cstdio>
#include <cmath>
#include <functional>
/* === M A C R O S ========================================================= */
#ifndef PI
# define PI (3.1415926535897932384626433832795029L)
# define HALF_PI (PI/2)
#endif
#define ANGLE_EPSILON (1.0e-6)
/* === T Y P E D E F S ===================================================== */
/* === C L A S S E S & S T R U C T S ======================================= */
_ETL_BEGIN_NAMESPACE
// ========================================================================
/*! \class angle _angle.h ETL/angle
** \brief Abstraction of the concept of an angle
** \see angle::deg, angle::rad, angle::rot, angle::sin, angle::cos, angle::tan, fastangle
** \writeme
*/
class angle
{
public:
typedef float value_type;
protected:
typedef value_type unit;
unit v; //! Stored in radians; positive values indicate counter-clockwise.
public:
/*
** Arithmetic Operators
*/
const angle &
operator+=(const angle &rhs)
{ v+=rhs.v; return *this; }
const angle &
operator-=(const angle &rhs)
{ v-=rhs.v; return *this; }
const angle &
operator*=(const unit &rhs)
{ v*=rhs; return *this; }
const angle &
operator/=(const unit &rhs)
{ v/=rhs; return *this; }
//! Angle Addition Operator
angle
operator+(const angle &rhs)const
{ return angle(*this)+=rhs; }
//! Angle Subtraction Operator
/*! \sa angle dist(const angle &) */
angle
operator-(const angle &rhs)const
{ return angle(*this)-=rhs; }
//! Angle Scalar Multiplication Operator
/*! This operator will multiply the given
angle by the given scalar value. */
angle
operator*(const unit &rhs)const
{ return angle(*this)*=rhs; }
angle
operator/(const unit &rhs)const
{ return angle(*this)/=rhs; }
//! Angle Negation
angle
operator-()const
{
angle ret;
ret.v=-v;
return ret;
}
#ifdef ETL_NOT_USED
//! 180 degree rotation operator
/*! Returns the angle directly opposite of
the given angle, and will yield a result
between 0 and 2PI */
angle
operator~()const
{
angle ret;
ret.v = v+PI;
return ret.mod();
}
#endif // ETL_NOT_USED
#ifdef ETL_WRAP_ANGLES
/*! Returns true if the shortest
angle from the left-hand to the
right-hand side is counter-clockwise */
bool
operator<(const angle &rhs)const
{ return dist(rhs).v<(value_type)0.0; }
/*! Returns true if the shortest
angle from the left-hand to the
right-hand side is clockwise */
bool
operator>(const angle &rhs)const
{ return dist(rhs).v>(value_type)0.0; }
/*! Returns true if the shortest
angle from the left-hand to the
right-hand side is counter-clockwise,
or if the angles are refer to the same
point on the unit circle. */
bool
operator<=(const angle &rhs)const
{ return dist(rhs).v<=(value_type)0.0; }
/*! Returns true if the shortest
angle from the left-hand to the
right-hand side is clockwise,
or if the angles are refer to the same
point on the unit circle. */
bool
operator>=(const angle &rhs)const
{ return dist(rhs).v>=(value_type)0.0; }
/*! Returns true if the angles
are refer to the same point
on the unit circle. */
bool
operator==(const angle &rhs)const
{ return std::abs(dist(rhs).v)<ANGLE_EPSILON; }
/*! Returns false if the angles
are refer to the same point
on the unit circle. */
bool
operator!=(const angle &rhs)const
{ return std::abs(dist(rhs).v)>ANGLE_EPSILON; }
#else // ETL_WRAP_ANGLES
/*! Returns true if the left-hand
side is less than the
right-hand side */
bool
operator<(const angle &rhs)const
{ return v < rhs.v; }
/*! Returns true if the left-hand
side is greater than the
right-hand side */
bool
operator>(const angle &rhs)const
{ return v > rhs.v; }
/*! Returns true if the left-hand
side is less or equal to the
right-hand side */
bool
operator<=(const angle &rhs)const
{ return v <= rhs.v; }
/*! Returns true if the left-hand
side is greater than or equal
to the right-hand side */
bool
operator>=(const angle &rhs)const
{ return v >= rhs.v; }
/*! Returns true if the angles
are the same, or close */
bool
operator==(const angle &rhs)const
{ return std::abs(v - rhs.v)<ANGLE_EPSILON; }
/*! Returns false if the angles
are different */
bool
operator!=(const angle &rhs)const
{ return std::abs(v - rhs.v)>ANGLE_EPSILON; }
#endif // ETL_WRAP_ANGLES
//! Absolute Angle Function
/*! This function will return the
absolute value of the angle. */
angle
abs()const
{
angle ret;
ret.v=std::abs(v);
return ret;
}
#ifdef ETL_WRAP_ANGLES
//! Angle Difference Function
/*! This function will return the
shortest physical distance between
two angles, from -PI/2 to PI/2
\sa angle operator-(const angle &) */
angle
dist(const angle &rhs)const
{
angle ret;
ret.v=v-rhs.v;
ret.v-=rot_floor(ret.v+PI);
return ret;
}
//! Rotation Modulus
/*! This function will return the
value of the angle between 0 and 2PI */
angle
mod()const
{
angle ret(*this);
ret.v-=rot_floor(ret.v);
return ret;
}
#else // ETL_WRAP_ANGLES
//! Angle Difference Function
/*! This function will return the
difference between
two angles, just like
\sa angle operator-(const angle &) */
angle
dist(const angle &rhs)const
{ return angle(*this)-=rhs; }
//! Rotation Modulus
/*! This function will return the
value of the angle */
angle
mod()const
{
angle ret(*this);
return ret;
}
#endif // ETL_WRAP_ANGLES
//! Zero Rotation (0 degrees)
static angle
zero()
{
angle ret;
ret.v=0;
return ret;
}
//! One Complete Rotation (360 degrees)
static angle
one()
{
angle ret;
ret.v=PI*2;
return ret;
}
//! One Half Rotation (180 degrees)
static angle
half()
{
angle ret;
ret.v=PI;
return ret;
}
bool operator!()const { return std::abs(mod().v) < ANGLE_EPSILON; }
private:
#ifdef ETL_WRAP_ANGLES
static value_type rot_floor(value_type x)
{ return static_cast<value_type>(std::floor(x/(PI*2))*PI*2); }
#endif // ETL_WRAP_ANGLES
public:
/*
** Conversion Classes
*/
class rad;
class deg;
class rot;
/*
** Trigonometric Classes
*/
class sin;
class cos;
class tan;
/*
** Friend classes
*/
friend class rad;
friend class deg;
friend class rot;
friend class sin;
friend class cos;
friend class tan;
/*
** Deprecated
*/
#ifndef ETL_NO_DEPRECATED
typedef rad radians;
typedef deg degrees;
typedef rot rotations;
#endif
}; // END of class angle
// ========================================================================
/*! \class angle::rad _angle.h ETL/angle
** \brief Angle representation in radians
** \see angle
** \writeme
*/
class angle::rad : public angle
{
public:
explicit rad(const value_type &x) { v=x; }
rad(const angle &a):angle(a) { }
rad mod()const { return angle::mod(); }
rad dist(const angle &rhs)const { return angle::dist(rhs); }
value_type get()const { return v; }
#ifndef ETL_NO_DEPRECATED
// operator value_type()const ETL_DEPRECATED_FUNCTION;
#endif
}; // END of class angle::radians
// inline angle::rad::operator angle::value_type()const { return get(); }
// ========================================================================
/*! \class angle::deg _angle.h ETL/angle
** \brief Angle representation in degrees
** \see angle
** \writeme
*/
class angle::deg : public angle
{
public:
explicit deg(const value_type &x) { v=x*((PI*2)/360); }
deg(const angle &a):angle(a) { }
deg mod()const { return angle::mod(); }
deg dist(const angle &rhs)const { return angle::dist(rhs); }
value_type get()const { return v*360/(PI*2); }
#ifndef ETL_NO_DEPRECATED
// operator value_type()const ETL_DEPRECATED_FUNCTION;
#endif
}; // END of class angle::degrees
// inline angle::deg::operator angle::value_type()const { return get(); }
// ========================================================================
/*! \class angle::rot _angle.h ETL/angle
** \brief Angle representation in rotations
** \see angle
** \writeme
*/
class angle::rot : public angle
{
public:
explicit rot(const value_type &x) { v=x*(PI*2); }
rot(const angle &a):angle(a) { }
rot mod()const { return angle::mod(); }
rot dist(const angle &rhs)const { return angle::dist(rhs); }
value_type get()const { return v/(PI*2); }
#ifndef ETL_NO_DEPRECATED
// operator value_type()const ETL_DEPRECATED_FUNCTION;
#endif
}; // END of class angle::rotations
// inline angle::rot::operator angle::value_type()const { return get(); }
// ========================================================================
/*! \class angle::sin _angle.h ETL/angle
** \brief Angle representation as a sine function
** \see angle
** \writeme
*/
class angle::sin : public angle
{
public:
explicit sin(const value_type &x) { v=static_cast<value_type>(std::asin(x)); }
sin(const angle &a):angle(a) { }
sin mod()const { return angle::mod(); }
sin dist(const angle &rhs)const { return angle::dist(rhs); }
value_type get()const { return static_cast<value_type>(std::sin(v)); }
#ifndef ETL_NO_DEPRECATED
// operator value_type()const ETL_DEPRECATED_FUNCTION;
#endif
}; // END of class angle::sin
// inline angle::sin::operator angle::value_type()const { return get(); }
// ========================================================================
/*! \class angle::cos _angle.h ETL/angle
** \brief Angle representation as a cosine function
** \see angle
** \writeme
*/
class angle::cos : public angle
{
public:
explicit cos(const value_type &x) { v=(value_type)(std::acos(x)); }
cos(const angle &a):angle(a) { }
cos mod()const { return angle::mod(); }
cos dist(const angle &rhs)const { return angle::dist(rhs); }
value_type get()const { return (value_type)std::cos(v); }
#ifndef ETL_NO_DEPRECATED
// operator value_type()const ETL_DEPRECATED_FUNCTION;
#endif
}; // END of class angle::cos
// inline angle::cos::operator angle::value_type()const { return get(); }
// ========================================================================
/*! \class angle::tan _angle.h ETL/angle
** \brief Angle representation as a tangent function
** \see angle
** \writeme
*/
class angle::tan : public angle
{
public:
explicit tan(const value_type &x) { v=(value_type)(std::atan(x)); }
tan(const value_type &y,const value_type &x) { v=(value_type)(std::atan2(y,x)); }
tan(const angle &a):angle(a) { }
tan mod()const { return angle::mod(); }
tan dist(const angle &rhs)const { return angle::dist(rhs); }
value_type get()const { return (value_type)std::tan(v); }
#ifndef ETL_NO_DEPRECATED
// operator value_type()const ETL_DEPRECATED_FUNCTION;
#endif
}; // END of class angle::tan
// inline angle::tan::operator angle::value_type()const { return get(); }
_ETL_END_NAMESPACE
//#include <iostream>
template <typename T>
struct affine_combo<etl::angle, T>
{
typedef T time_type;
//affine_combo() { std::cerr<<"affine_combo<etl::angle,float>: I was created!"<<std::endl; }
//~affine_combo() { std::cerr<<"affine_combo<etl::angle,float>: I was DELETED!"<<std::endl; }
etl::angle operator()(const etl::angle &a,const etl::angle &b,const time_type &t)const
{
return b.dist(a)*(float)t+a;
}
etl::angle reverse(const etl::angle &x, const etl::angle &b, const time_type &t)const
{
return x.dist(b*(float)t)*(float)(time_type(1)/(time_type(1)-t));
}
};
template <>
struct distance_func<etl::angle> : public std::binary_function<etl::angle, etl::angle, etl::angle>
{
etl::angle operator()(const etl::angle &a,const etl::angle &b)const
{
etl::angle delta=b.dist(a);
//if(delta<etl::angle::zero())
// return delta+etl::angle::one();
return delta;
}
etl::angle cook(const etl::angle &x)const { return x; }
etl::angle uncook(const etl::angle &x)const { return x; }
};
/* === E N D =============================================================== */
#endif
|