We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12b5e99 commit 52f8569Copy full SHA for 52f8569
2 files changed
trimesh/base.py
@@ -1814,7 +1814,8 @@ def section_multiplane(self,
1814
1815
def slice_plane(self,
1816
plane_origin,
1817
- plane_normal):
+ plane_normal,
1818
+ **kwargs):
1819
"""
1820
Returns another mesh that is the current mesh
1821
sliced by the plane defined by origin and normal.
@@ -1836,7 +1837,8 @@ def slice_plane(self,
1836
1837
new_mesh = intersections.slice_mesh_plane(
1838
mesh=self,
1839
plane_normal=plane_normal,
- plane_origin=plane_origin)
1840
+ plane_origin=plane_origin,
1841
+ **kwargs)
1842
1843
return new_mesh
1844
trimesh/version.py
@@ -1 +1 @@
1
-__version__ = '2.35.9'
+__version__ = '2.35.10'
0 commit comments