Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 0 additions & 16 deletions autoarray/structures/triangles/abstract.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import numpy as np

from autoarray import Grid2D
from autoarray.structures.triangles.shape import Shape

HEIGHT_FACTOR = 3**0.5 / 2

Expand Down Expand Up @@ -122,21 +121,6 @@ def for_indexes(self, indexes: np.ndarray) -> "AbstractTriangles":
The new ArrayTriangles instance.
"""

@abstractmethod
def containing_indices(self, shape: Shape) -> np.ndarray:
"""
Find the triangles that insect with a given shape.

Parameters
----------
shape
The shape

Returns
-------
The indices of triangles that intersect the shape.
"""

@abstractmethod
def neighborhood(self) -> "AbstractTriangles":
"""
Expand Down
Loading
Loading