From 11db2031548024c70a2b632a360fed5e2cb9c7c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20M=C3=BCller?= Date: Thu, 3 Jun 2021 15:11:04 +0200 Subject: [PATCH] Field.mesh: better doc for kwargs --- gstools/field/base.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gstools/field/base.py b/gstools/field/base.py index b255ad1a..7c83f370 100755 --- a/gstools/field/base.py +++ b/gstools/field/base.py @@ -159,7 +159,7 @@ def mesh( cell_data. If to few names are given, digits will be appended. Default: "field" **kwargs - Keyword arguments forwarded to field generation call. + Keyword arguments forwarded to :any:`__call__`. Notes ----- @@ -170,7 +170,6 @@ def mesh( - meshio: https://github.com/nschloe/meshio - ogs5py: https://github.com/GeoStat-Framework/ogs5py - PyVista: https://github.com/pyvista/pyvista - - Called method: :any:`__call__` """ return generate_on_mesh(self, mesh, points, direction, name, **kwargs)