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

28 lines
412 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 Sphere3;
typedef Sphere3<float> Sphere3f;
typedef Sphere3<double> Sphere3d;
typedef Sphere3<Real> Sphere3r;
} // namespace
} // namespace
} // namespace