Skip to content

Commit

Permalink
delete comments
Browse files Browse the repository at this point in the history
  • Loading branch information
tomvanmele committed Nov 8, 2024
1 parent d6b6612 commit a162088
Showing 1 changed file with 0 additions and 31 deletions.
31 changes: 0 additions & 31 deletions src/compas/datastructures/volmesh/volmesh.py
Original file line number Diff line number Diff line change
Expand Up @@ -3111,37 +3111,6 @@ def halfface_opposite_halfface(self, halfface):
nbr = self._plane[w][v][u]
return None if nbr is None else self._cell[nbr][w][v]

# def halfface_adjacent_halfface(self, halfface, halfedge):
# """Return the halfface adjacent to the halfface across the halfedge.

# Parameters
# ----------
# halfface : int
# The identifier of the halfface.
# halfedge : tuple[int, int]
# The identifier of the halfedge.

# Returns
# -------
# int | None
# The identifier of the adjacent half-face, or None if `halfedge` is on the boundary.

# See Also
# --------
# :meth:`halfface_opposite_halfface`

# Notes
# -----
# The adjacent face belongs to one of the cell neighbors over faces of the initial cell.
# A face and its adjacent face share two common vertices.

# """
# u, v = halfedge
# cell = self.halfface_cell(halfface)
# nbr_halfface = self._cell[cell][v][u]
# nbr_cell = self._plane[u][v][nbr_halfface]
# return None if nbr_cell is None else self._cell[nbr_cell][v][u]

def halfface_vertex_ancestor(self, halfface, vertex):
"""Return the vertex before the specified vertex in a specific face.
Expand Down

0 comments on commit a162088

Please sign in to comment.