From 24eccca370f35d48416a6c22498d8550014a4a54 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sat, 23 Apr 2022 00:52:58 +0200 Subject: [PATCH] renamed towards_ideal to towards_inf --- arbitrile.cpp | 4 ++-- hyperpoint.cpp | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/arbitrile.cpp b/arbitrile.cpp index 997de65f..6913e44d 100644 --- a/arbitrile.cpp +++ b/arbitrile.cpp @@ -911,10 +911,10 @@ EX hyperpoint get_midedge(ld len, const hyperpoint &l, const hyperpoint &r) { return normalize(kleinize(l) + kleinize(r)); } else if(len == INFINITE_RIGHT) { - return towards_ideal(r, l); + return towards_inf(r, l); } else if(len == INFINITE_LEFT) { - return towards_ideal(l, r); + return towards_inf(l, r); } else return mid(l, r); } diff --git a/hyperpoint.cpp b/hyperpoint.cpp index 022f176c..ee3612c7 100644 --- a/hyperpoint.cpp +++ b/hyperpoint.cpp @@ -1684,10 +1684,10 @@ EX hyperpoint circumscribe(hyperpoint a, hyperpoint b, hyperpoint c, hyperpoint return h; } -/** the point in distance dist from 'material' to 'ideal' */ -EX hyperpoint towards_ideal(hyperpoint material, hyperpoint ideal, ld dist IS(1)) { +/** the point in distance dist from 'material' to 'dir' (usually an (ultra)ideal point) */ +EX hyperpoint towards_inf(hyperpoint material, hyperpoint dir, ld dist IS(1)) { transmatrix T = gpushxto0(material); - hyperpoint id = T * ideal; + hyperpoint id = T * dir; return rgpushxto0(material) * rspintox(id) * xpush0(1); }