v0.3.0 API Reference
Geometry.h
1//
2// Geometry.h
3// avara3d
4//
5// Created by Morgan Davis on 8/18/26.
6// Copyright © 2026 Morgan K Davis. All rights reserved.
7//
8
9#ifndef AVARA3D_UTIL_GEOMETRY_H
10#define AVARA3D_UTIL_GEOMETRY_H
11
12#include "a3d/Math.h"
13
14namespace a3d {
15
16struct AABB;
17
18} // namespace a3d
19
20namespace a3d::util::geom {
21
22// [Public Functions]
23
29math::mat4 fit_inside(const AABB& source, const math::vec3& targetSize);
30
31} // namespace a3d::util::geom
32
33#endif // AVARA3D_UTIL_GEOMETRY_H