public bool Intersect(Bounds bounds, out Vec3 at) => NativeAPI.bounds_ray_intersect(bounds, this, out at);
public bool Intersect(Ray ray, out Vec3 at) => NativeAPI.bounds_ray_intersect(this, ray, out at);