Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit 82cf89e

Browse files
author
Frédéric Chapoton
committed
trac #9439 fine tuning the doc
1 parent 8789fdc commit 82cf89e

File tree

3 files changed

+13
-12
lines changed

3 files changed

+13
-12
lines changed

src/sage/geometry/hyperbolic_space/hyperbolic_geodesic.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1006,9 +1006,9 @@ def perpendicular_bisector(self): #UHP
10061006
H = self._model.get_isometry(isom_mtrx)
10071007
return self._model.get_geodesic(H(self._start), H(self._end))
10081008

1009-
def midpoint(self): #UHP
1009+
def midpoint(self): # UHP
10101010
r"""
1011-
Return the (hyperbolic) midpoint of ``self`` if .
1011+
Return the (hyperbolic) midpoint of ``self`` if it exists.
10121012
10131013
EXAMPLES::
10141014
@@ -1051,7 +1051,7 @@ def angle(self, other): #UHP
10511051
10521052
INPUT:
10531053
1054-
-``other`` -- a hyperbolic geodesic in the UHP model
1054+
- ``other`` -- a hyperbolic geodesic in the UHP model
10551055
10561056
OUTPUT:
10571057

src/sage/geometry/hyperbolic_space/hyperbolic_model.py

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
False
4747
4848
The isometry groups of UHP and PD are projective, while that of HM is
49-
linear:
49+
linear::
5050
5151
sage: U.is_isometry_group_projective()
5252
True
@@ -55,7 +55,7 @@
5555
5656
The models are responsible for determining if the coordinates of points
5757
and the matrix of linear maps are appropriate for constructing points
58-
and isometries in hyperbolic space:
58+
and isometries in hyperbolic space::
5959
6060
sage: U.point_in_model(2 + I)
6161
True
@@ -360,18 +360,19 @@ def get_point(self, coordinates, is_boundary=None, **graphics_options):
360360
r"""
361361
Return a point in ``self``.
362362
363-
Automatically determine the type of point to return given either
364-
(1) the coordinates of a point in the interior or ideal boundary
365-
of hyperbolic space or (2) a :class:`HyperbolicPoint` or
366-
:class:`HyperbolicBdryPoint` object.
363+
Automatically determine the type of point to return given either:
364+
365+
#. the coordinates of a point in the interior or ideal boundary
366+
of hyperbolic space, or
367+
#. a :class:`~sage.geometry.hyperbolic_space.hyperbolic_point.HyperbolicPoint` object.
367368
368369
INPUT:
369370
370371
- a point in hyperbolic space or on the ideal boundary
371372
372373
OUTPUT:
373374
374-
- a :class:`HyperbolicPoint`
375+
- a :class:`~sage.geometry.hyperbolic_space.hyperbolic_point.HyperbolicPoint`
375376
376377
EXAMPLES:
377378

src/sage/geometry/hyperbolic_space/hyperbolic_point.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ def graphics_options(self):
443443

444444
def symmetry_involution(self):
445445
r"""
446-
Return the involutary isometry fixing the given point.
446+
Return the involutory isometry fixing the given point.
447447
448448
EXAMPLES::
449449
@@ -556,7 +556,7 @@ class HyperbolicPointUHP(HyperbolicPoint):
556556
"""
557557
def symmetry_involution(self):
558558
r"""
559-
Return the involutary isometry fixing the given point.
559+
Return the involutory isometry fixing the given point.
560560
561561
EXAMPLES::
562562

0 commit comments

Comments
 (0)