From 48f485d1ab1147054e1c93f8d0d102df73ac5342 Mon Sep 17 00:00:00 2001 From: Marcelo Zoccoler Date: Mon, 17 Jul 2023 11:44:30 +0200 Subject: [PATCH] update cut_with_plane function docstring --- napari_crop/_function.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/napari_crop/_function.py b/napari_crop/_function.py index 5b17022..475c5bf 100644 --- a/napari_crop/_function.py +++ b/napari_crop/_function.py @@ -169,6 +169,8 @@ def cut_with_plane(image_to_be_cut, plane_normal, plane_position, positive_cut=T positive_cut : bool, optional If True, the positive side of the plane is kept. If False, the negative side of the plane is kept. By default True + crop : bool, optional + If True, the output image is cropped to the minimum size. Returns -------