From fe1e1d1f16dbdacd72cf134e36a7ab6895f20edf Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Thu, 7 Oct 2021 16:48:39 +0200 Subject: [PATCH] binary product now uses curved shapes --- polygons.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/polygons.cpp b/polygons.cpp index 84fefe36..113a541d 100644 --- a/polygons.cpp +++ b/polygons.cpp @@ -810,6 +810,8 @@ void geometry_information::make_wall(int id, vector vertices, vector auto d = product_decompose(vertices[i]); altitudes[i] = d.first; vertices[i] = d.second; + if(bt::in()) + vertices[i] = deparabolic13(vertices[i]); } } @@ -817,7 +819,7 @@ void geometry_information::make_wall(int id, vector vertices, vector ld w = 0; for(int i=0; i vertices, vector hyperpoint h = center + v1 * x + v2 * y; if(nil && (x || y)) h = nilv::on_geodesic(center, nilv::on_geodesic(v1+center, v2+center, y / (x+y)), x + y); - if(prod) { + if(prod) { + if(bt::in()) h = PIU( parabolic13(h) ); h = zshift(normalize_flat(h), center_altitude * (1-x-y) + altitudes[a] * x + altitudes[b] * y); hpcpush(h); return; } @@ -862,6 +865,7 @@ void geometry_information::make_wall(int id, vector vertices, vector if(triangles && (a%3 != 1)) continue; hyperpoint h = (vertices[a] * (STEP-y) + vertices[(a+1)%n] * y)/STEP; if(prod) { + if(bt::in()) h = PIU( parabolic13(h) ); h = zshift(normalize_flat(h), (altitudes[a] * (STEP-y) + altitudes[(a+1)%n] * y) / STEP); hpcpush(h); }