다급한 Youtube 검색
2024-05-03 10:23:27

인형안테뭇은오댕국물지웆

인형안테뭇은오댕국물지우기

간만에 웃었다.

▼ more
sqrt
2024-05-03 10:23:16

float sqrt3(const float& n)                                                                       

{                                                                                                 

    //https://www.gamedev.net/forums/topic/704525-3-quick-ways-to-calculate-the-square-root-in-c/ 

    if (n == 0)                                                                                   

        return 0.0f;                                                                              

    static union { int i; float f; } u;                                                           

    u.i = 0x2035AD0C + (*(int*)&n >> 1);                                                          

    return n / u.f + u.f * 0.25f;                                                                 

}                                                                                                 

▼ more
The 21st century is here
2024-05-03 10:23:01

ChatGPT

ChatGPT

▼ more
Goodbye my old friend
2023-12-13 20:18:02

▼ more