mirror of
https://github.com/Relintai/programming_tutorials.git
synced 2025-04-23 21:53:28 +02:00
15 lines
265 B
C++
15 lines
265 B
C++
|
|
#include <iostream>
|
|
|
|
#include "math.h"
|
|
|
|
int main() {
|
|
|
|
std::cout << Math::sin(1.43) << std::endl;
|
|
|
|
std::cout << Math::fast_inv_sqrt(1.43) << std::endl;
|
|
std::cout << Math::inv_sqrt(1.43) << std::endl;
|
|
|
|
std::cout << "asd" << std::endl;
|
|
return 0;
|
|
} |