implementing shared_surfaces method

This commit is contained in:
Pilar 2023-02-13 07:55:25 -05:00
parent 9f579bf93a
commit 491cee92da
2 changed files with 0 additions and 4 deletions

View File

@ -17,9 +17,6 @@ class Plane:
"""
def __init__(self, origin, normal):
# todo: other options to define the plane:
# by two lines
# by three points
self._origin = origin
self._normal = normal
self._equation = None

View File

@ -287,7 +287,6 @@ class Surface:
"""
Raises not implemented error
"""
# todo: check https://trimsh.org/trimesh.collision.html as an option to implement this method
raise NotImplementedError
def divide(self, z):