minor rewrite

This commit is contained in:
Jorijn van der Graaf 2026-02-11 02:52:03 +01:00
commit 20ecd2ab9d
8 changed files with 173 additions and 279 deletions

13
interfaces/main.cpp Normal file
View file

@ -0,0 +1,13 @@
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;
}