From f9cabece977dd62363791481a157e86d7292125e Mon Sep 17 00:00:00 2001 From: Dylan Nielson Date: Sat, 22 Jun 2024 12:29:52 +0900 Subject: [PATCH] Update nitransforms/surface.py Co-authored-by: Oscar Esteban --- nitransforms/surface.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/nitransforms/surface.py b/nitransforms/surface.py index b9d97f7a..0afca86b 100644 --- a/nitransforms/surface.py +++ b/nitransforms/surface.py @@ -186,13 +186,13 @@ def from_filename(cls, filename=None, reference_path=None, moving_path=None, return cls(reference, moving) class SurfaceResampler(SurfaceTransformBase): - """Represents transformations in which the coordinate space remains the same and the indicies - change. - To achieve surface project-unproject functionality: + """ + Represents transformations in which the coordinate space remains the same and the indices change. + To achieve surface project-unproject functionality: sphere_in as the reference sphere_project_to as the moving - Then apply the transformation to sphere_unproject_from - """ + Then apply the transformation to sphere_unproject_from + """ __slots__ = ("_reference", "_moving", "mat", 'interpolation_method')