Skip to content

Commit

Permalink
Python: when scaling R13 vertices of tetrahedron to match cusp neighb…
Browse files Browse the repository at this point in the history
…orhood, always use real lengths.
  • Loading branch information
unhyperbolic committed Feb 19, 2024
1 parent d5576e2 commit abfae1e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def _scale_vertices(mcomplex):
for v0 in simplex.ZeroSubsimplices:
v1, v2, _ = simplex.VerticesOfFaceCounterclockwise[simplex.comp(v0)]

length_on_cusp = tet.horotriangles[v0].lengths[v0 | v1 | v2]
length_on_cusp = tet.horotriangles[v0].get_real_lengths()[v0 | v1 | v2]
length_on_horosphere = (
-2 * R13_vertex_products[v1 | v2] / (
R13_vertex_products[v0 | v1] *
Expand Down

0 comments on commit abfae1e

Please sign in to comment.