From 3112c057fee3764fadaa6e500a7b3b9d082b2503 Mon Sep 17 00:00:00 2001 From: Nate MacFadden Date: Sat, 3 Feb 2024 23:47:39 -0500 Subject: [PATCH] add vertex label accesss --- cytools/polytopeface.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/cytools/polytopeface.py b/cytools/polytopeface.py index 6b05098..a2b4973 100644 --- a/cytools/polytopeface.py +++ b/cytools/polytopeface.py @@ -243,6 +243,20 @@ def labels_int(self) -> tuple: return self._labels_int + @property + def labels_vertices(self) -> tuple: + """ + **Description:** + Returns the labels of vertices in the face. + + **Arguments:** + None. + + **Returns:** + The labels of vertices in the face. + """ + return self._labels_vertices + def dimension(self) -> int: """ **Description:**