Avara3D 0.2.0
C++ 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
16 struct AABB;
17
18}
19
20namespace a3d::util::geom {
21
22 // [Public Functions]
23
29 math::mat4 fit_inside(const AABB& source, const math::vec3& targetSize);
30
31}
32
33#endif // AVARA3D_UTIL_GEOMETRY_H