Files
core_math/tjp/core/math/Box3.hpp
Timothy Prepscius 0807c0286a flatten 20260225
2026-02-25 12:36:47 -05:00

37 lines
500 B
C++
Executable File

//
// Math.hpp
// amoeba
//
// Created by Timothy Prepscius on 12/30/16.
// Copyright © 2016 Timothy Prepscius. All rights reserved.
//
#pragma once
#include "Box3.h"
#include <array>
namespace tjp {
namespace core {
namespace math {
template<typename Real>
class Box3
{
public:
typedef Real value_type;
typedef Vector3<Real> Center;
Center center;
using Axis = Vector3<Real>;
std::array<Axis, 3> axis;
std::array<Real, 3> extent;
};
} // namespace
} // namespace
} // namespace