LeviLamina
Loading...
Searching...
No Matches
SweptMovement.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class AABB;
8class Vec3;
9namespace SweptMovement { struct MoveResult; }
10// clang-format on
11
12namespace SweptMovement {
13// functions
14// NOLINTBEGIN
15MCAPI ::SweptMovement::MoveResult computeMoveWithDepenetration(
16 ::gsl::span<::Vec3 const> steps,
17 ::AABB const& mover,
18 ::std::vector<::AABB> const& collisionShapes,
19 ::Vec3 const& maxDepenetration
20);
21// NOLINTEND
22
23} // namespace SweptMovement
Definition AABB.h:16
Definition Vec3.h:10