#include <cmath>
Go to the source code of this file.
|
| #define | FACOS(x) ((float)acos((double)(x))) |
| |
| #define | FASIN(x) ((float)asin((double)(x))) |
| |
| #define | FATAN(x) ((float)atan((double)(x))) |
| |
| #define | FCEIL(x) ((float)ceil((double)(x))) |
| |
| #define | FCOS(x) ((float)cos((double)(x))) |
| |
| #define | FFABS(x) ((float)fabs((double)(x))) |
| |
| #define | FFLOOR(x) ((float)floor((double)(x))) |
| |
| #define | FLOG(x) ((float)log((double)(x))) |
| |
| #define | FLOG10(x) ((float)log10((double)(x))) |
| |
| #define | FPOW(x, y) ((float)pow((double)(x),(double)(y))) |
| |
| #define | FSIN(x) ((float)sin((double)(x))) |
| |
| #define | FSQRT(x) ((float)sqrt((double)(x))) |
| |
| #define | FTAN(x) ((float)tan((double)(x))) |
| |
| #define | M_PI 3.1415926535897931160E0 |
| |
| #define | M_PI_2 1.5707963267948965580E0 |
| |
| #define | SbMaximum(a, b) ((a)>(b)?a:b) |
| |
| #define | SbMinimum(a, b) ((a)<(b)?a:b) |
| |
◆ FACOS
| #define FACOS |
( |
|
x | ) |
((float)acos((double)(x))) |
◆ FASIN
| #define FASIN |
( |
|
x | ) |
((float)asin((double)(x))) |
◆ FATAN
| #define FATAN |
( |
|
x | ) |
((float)atan((double)(x))) |
◆ FCEIL
| #define FCEIL |
( |
|
x | ) |
((float)ceil((double)(x))) |
◆ FCOS
| #define FCOS |
( |
|
x | ) |
((float)cos((double)(x))) |
◆ FFABS
| #define FFABS |
( |
|
x | ) |
((float)fabs((double)(x))) |
◆ FFLOOR
| #define FFLOOR |
( |
|
x | ) |
((float)floor((double)(x))) |
◆ FLOG
| #define FLOG |
( |
|
x | ) |
((float)log((double)(x))) |
◆ FLOG10
| #define FLOG10 |
( |
|
x | ) |
((float)log10((double)(x))) |
◆ FPOW
| #define FPOW |
( |
|
x, |
|
|
|
y |
|
) |
| ((float)pow((double)(x),(double)(y))) |
◆ FSIN
| #define FSIN |
( |
|
x | ) |
((float)sin((double)(x))) |
◆ FSQRT
| #define FSQRT |
( |
|
x | ) |
((float)sqrt((double)(x))) |
◆ FTAN
| #define FTAN |
( |
|
x | ) |
((float)tan((double)(x))) |
◆ M_PI
| #define M_PI 3.1415926535897931160E0 |
◆ M_PI_2
| #define M_PI_2 1.5707963267948965580E0 |
◆ SbMaximum
| #define SbMaximum |
( |
|
a, |
|
|
|
b |
|
) |
| ((a)>(b)?a:b) |
◆ SbMinimum
| #define SbMinimum |
( |
|
a, |
|
|
|
b |
|
) |
| ((a)<(b)?a:b) |