Crafter.Math/interfaces/main.cpp
2026-02-11 02:52:03 +01:00

13 lines
No EOL
376 B
C++

import Crafter.Math;
import std;
using namespace Crafter;
int main() {
Vector<float, 3, 0> test(1,2,3);
Vector<float, 3, 0> test2(1,2,3);
Vector<float, 3, 0> test3(1,2,3);
Vector<float, 3, 0> test4(1,2,3);
Vector<float, 3, 0> test5(1,2,3);
std::cout << IntersectionTestRayTriangle(test, test2, test3, test4, test5) << std::endl;
}