Skip to content

Commit a162088

Browse files
committed
delete comments
1 parent d6b6612 commit a162088

File tree

1 file changed

+0
-31
lines changed

1 file changed

+0
-31
lines changed

src/compas/datastructures/volmesh/volmesh.py

Lines changed: 0 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -3111,37 +3111,6 @@ def halfface_opposite_halfface(self, halfface):
31113111
nbr = self._plane[w][v][u]
31123112
return None if nbr is None else self._cell[nbr][w][v]
31133113

3114-
# def halfface_adjacent_halfface(self, halfface, halfedge):
3115-
# """Return the halfface adjacent to the halfface across the halfedge.
3116-
3117-
# Parameters
3118-
# ----------
3119-
# halfface : int
3120-
# The identifier of the halfface.
3121-
# halfedge : tuple[int, int]
3122-
# The identifier of the halfedge.
3123-
3124-
# Returns
3125-
# -------
3126-
# int | None
3127-
# The identifier of the adjacent half-face, or None if `halfedge` is on the boundary.
3128-
3129-
# See Also
3130-
# --------
3131-
# :meth:`halfface_opposite_halfface`
3132-
3133-
# Notes
3134-
# -----
3135-
# The adjacent face belongs to one of the cell neighbors over faces of the initial cell.
3136-
# A face and its adjacent face share two common vertices.
3137-
3138-
# """
3139-
# u, v = halfedge
3140-
# cell = self.halfface_cell(halfface)
3141-
# nbr_halfface = self._cell[cell][v][u]
3142-
# nbr_cell = self._plane[u][v][nbr_halfface]
3143-
# return None if nbr_cell is None else self._cell[nbr_cell][v][u]
3144-
31453114
def halfface_vertex_ancestor(self, halfface, vertex):
31463115
"""Return the vertex before the specified vertex in a specific face.
31473116

0 commit comments

Comments
 (0)