28 lines
391 B
C++
Executable File
28 lines
391 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 "Real.h"
|
|
|
|
namespace tjp {
|
|
namespace core {
|
|
namespace math {
|
|
|
|
template<typename Real>
|
|
class Box3;
|
|
|
|
typedef Box3<float> Box3f;
|
|
typedef Box3<double> Box3d;
|
|
typedef Box3<Real> Box3r;
|
|
|
|
} // namespace
|
|
} // namespace
|
|
} // namespace
|
|
|