This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
________ ________ ____ _ _ | |
| ____\ \ / / ____| / __ \ | (_) | |
| |__ \ \ / /| |__ ______| | | |_ __ | |_ _ __ ___ | |
| __| \ \/ / | __|______| | | | '_ \| | | '_ \ / _ \ | |
| |____ \ / | |____ | |__| | | | | | | | | | __/ | |
|______| \/ |______| \____/|_| |_|_|_|_| |_|\___| | |
_ _ | |
| | | | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <math.h> | |
/* | |
** float q_rsqrt( float number ) | |
*/ | |
float Q_rsqrt( float number ) { | |
long i; | |
float x2, y; | |
const float threehalfs = 1.5F; | |
NewerOlder