diff --git a/README.md b/README.md index 94e275d..7d5b717 100644 --- a/README.md +++ b/README.md @@ -2,5 +2,3 @@ This package provides an API to write and execute scripts in a running ZEISS INSPECT instance. Please read the [ZEISS INSPECT API documentation](https://zeiss.github.io/IQS/) for details. - -The [ZEISS INSPECT API wheel](https://pypi.org/project/zeiss-inspect-api/) is hosted on PyPI. diff --git a/pyproject.toml b/pyproject.toml index 8f668f0..1118d21 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "zeiss_inspect_api" -version = "2025.3.0.420" +version = "2025.4.0.398" authors = [ { name="Carl Zeiss GOM Metrology GmbH", email="info.optical.metrology@zeiss.com" }, ] diff --git a/src/gom/__init__.py b/src/gom/__init__.py index 85ef807..4a41e41 100644 --- a/src/gom/__init__.py +++ b/src/gom/__init__.py @@ -48,7 +48,6 @@ import gom.__api__ import gom.__config__ -import gom.__state__ import gom.__test__ import gom.__tools__ diff --git a/src/gom/api/imaging/__init__.py b/src/gom/api/imaging/__init__.py index e6943b2..44c8c98 100644 --- a/src/gom/api/imaging/__init__.py +++ b/src/gom/api/imaging/__init__.py @@ -93,7 +93,7 @@ def compute_pixels_from_point(point_and_image_acquisitions:list[tuple[gom.Vec3d, @version 1 This function is used to compute the location of a 3d point in a 2d image. This is a photogrammetric - operation which will return a precise result. The input parameter is a list of tupels where each tuple consists + operation which will return a precise result. The input parameter is a list of tuples where each tuple consists of a 3d point and and acquisition object. The acquisition object is then used to compute the location of the 3d point in the referenced image. This might lead to multiple pixels as a result, so the return value is again a list containing 0 to n entries of pixel matches. diff --git a/src/gom/api/introspection/__init__.py b/src/gom/api/introspection/__init__.py index f830084..bb5d5c1 100644 --- a/src/gom/api/introspection/__init__.py +++ b/src/gom/api/introspection/__init__.py @@ -32,14 +32,14 @@ def name(self) -> str: ''' return self.__call_method__('name') - def descripion(self) -> str: + def description(self) -> str: ''' @brief Returns the optional function description @version 1 @return Function description ''' - return self.__call_method__('descripion') + return self.__call_method__('description') def signature(self) -> list[str]: ''' diff --git a/src/gom/api/project/__init__.py b/src/gom/api/project/__init__.py index ea22116..6a8ac66 100644 --- a/src/gom/api/project/__init__.py +++ b/src/gom/api/project/__init__.py @@ -16,7 +16,7 @@ class ProgressInformation (gom.__api__.Object): ''' @deprecated Please use gom.api.progress.ProgressBar instead - @brief Auxillary class allowing to set progress information + @brief Auxiliary class allowing to set progress information This class is used to access the progress bar and progress message widgets of the application. ''' diff --git a/src/gom/api/settings/__init__.py b/src/gom/api/settings/__init__.py index 3dc0467..5feb0e5 100644 --- a/src/gom/api/settings/__init__.py +++ b/src/gom/api/settings/__init__.py @@ -3,8 +3,8 @@ # # @brief API for storing add-on related settings persistently # -# This API allows reading/writing values into the application configuration permantly. The -# configuration is persistant and will survive application restarts. Also, it can be accessed +# This API allows reading/writing values into the application configuration permanently. The +# configuration is persistent and will survive application restarts. Also, it can be accessed # via the applications preferences dialog. # # The configuration entries must be defined in the add-ons `metainfo.json` file. This configuration