VulkanEngine 0.1
Graphics engine using Vulkan
Loading...
Searching...
No Matches
BoundingBox.h
1// Copyright (c) 2024 Michael Carlie. All Rights Reserved.
2//
3// This software is released under the MIT License.
4// https://opensource.org/licenses/MIT
5
6#ifndef INCLUDE_VULKANENGINE_BOUNDINGBOX_H_
7#define INCLUDE_VULKANENGINE_BOUNDINGBOX_H_
8
11
14template <typename PositionType>
17 PositionType max;
18
20 PositionType min;
21};
22
23#endif // INCLUDE_VULKANENGINE_BOUNDINGBOX_H_
Base class for BoundingBox specializations.
Definition: BoundingBox.h:10
Definition: BoundingBox.h:15
PositionType max
The maximum extent of the bounding box.
Definition: BoundingBox.h:17
PositionType min
The minimum extent of the bounding box.
Definition: BoundingBox.h:20