LeviLamina
Loading...
Searching...
No Matches
MathUtility.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class Vec3;
8namespace mce::MathUtility { struct GramSchmidtResult; }
9// clang-format on
10
11namespace mce::MathUtility {
12// functions
13// NOLINTBEGIN
14MCNAPI ::mce::MathUtility::GramSchmidtResult computeGramSchmidtBasis(::Vec3 const& forward, ::Vec3 const& up);
15
16MCNAPI ::glm::mat4x4 generateRotationAroundPivotMat(::glm::mat4x4 const& rotation, ::glm::vec3 const& pivot);
17// NOLINTEND
18
19} // namespace mce::MathUtility
Definition Vec3.h:10