flatten 20260225

This commit is contained in:
Timothy Prepscius
2026-02-25 12:36:47 -05:00
commit 0807c0286a
107 changed files with 12310 additions and 0 deletions

27
tjp/core/math/HPoint.h Executable file
View File

@@ -0,0 +1,27 @@
//
// 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>
struct HPoint;
typedef HPoint<Real> HPointr;
typedef HPoint<float> HPointf;
typedef HPoint<double> HPointd;
} // namespace
} // namespace
} // namespace