#pragma once #include "z3Dmath.hpp" /* * Calculates the distance between points `a` and `b` */ inline f32 Math3D_Vec3f_DistXYZ(Vec3f* a, Vec3f* b) { return Math_Vec3f_DistXYZ(a, b); }