Crafter.Math/interfaces/main.cpp

8 lines
172 B
C++
Raw Normal View History

2026-02-11 02:52:03 +01:00
import Crafter.Math;
import std;
using namespace Crafter;
int main() {
2026-02-11 04:28:54 +01:00
std::cout << IntersectionTestRaySphere<float>({0,0,0}, 10, {0,0,-100}, {0,1,0}) << std::endl;
2026-02-11 02:52:03 +01:00
}