From ed88c6dfbb5a1a17f1f1d5862b37fb7128323050 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Thu, 30 Sep 2021 14:13:19 +0200 Subject: [PATCH] fixed asin_auto_clamp in product --- hyperpoint.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/hyperpoint.cpp b/hyperpoint.cpp index 63fea01d..ea82109c 100644 --- a/hyperpoint.cpp +++ b/hyperpoint.cpp @@ -317,6 +317,7 @@ EX ld asin_auto_clamp(ld x) { case gcHyperbolic: return asinh(x); case gcSL2: return asinh(x); case gcSphere: return asin_clamp(x); + case gcProduct: return PIU(asin_auto_clamp(x)); default: return x; } }