| /** | |
| * This file has no copyright assigned and is placed in the Public Domain. | |
| * This file is part of the w64 mingw-runtime package. | |
| * No warranty is given; refer to the file DISCLAIMER.PD within this package. | |
| */ | |
| /* | |
| cprojf.c | |
| Contributed by Danny Smith | |
| 2004-12-24 | |
| */ | |
| #include <math.h> | |
| #include <complex.h> | |
| /* Return the value of the projection onto the Riemann sphere.*/ | |
| float complex cprojf (float complex Z) | |
| { | |
| complex float Res = Z; | |
| if (isinf (__real__ Z) || isinf (__imag__ Z)) | |
| { | |
| __real__ Res = HUGE_VALF; | |
| __imag__ Res = copysignf (0.0f, __imag__ Z); | |
| } | |
| return Res; | |
| } | |