halfedge 0.12.0__py3-none-any.whl → 0.12.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
halfedge/type_attrib.py
CHANGED
|
@@ -98,7 +98,7 @@ class StaticAttrib(Generic[_T]):
|
|
|
98
98
|
self, value: _T | None = None, mesh: BlindHalfEdges | None = None
|
|
99
99
|
) -> None:
|
|
100
100
|
"""Set value and mesh."""
|
|
101
|
-
self.cached_value = value
|
|
101
|
+
self.cached_value: _T | None = value
|
|
102
102
|
self._mesh = mesh
|
|
103
103
|
|
|
104
104
|
def copy_to_element(
|
|
@@ -207,7 +207,7 @@ class Attrib(Generic[_T]):
|
|
|
207
207
|
self, value: _T | None = None, element: MeshElementBase | None = None
|
|
208
208
|
) -> None:
|
|
209
209
|
"""Set value and element."""
|
|
210
|
-
self.cached_value = value
|
|
210
|
+
self.cached_value: _T | None = value
|
|
211
211
|
self._element = element
|
|
212
212
|
|
|
213
213
|
@property
|
|
@@ -4,8 +4,8 @@ halfedge/half_edge_elements.py,sha256=z5rjlZCVJJOpWUf8oVNvZXgr1x4xhz5033lmsm4UBL
|
|
|
4
4
|
halfedge/half_edge_object.py,sha256=A70CVmV44zDi46gbtGHj8dw4Ltshqs56MRn5-78eM20,28771
|
|
5
5
|
halfedge/half_edge_querries.py,sha256=q5xVOFdpw7t6fhs-Z8yF5j3RlG4DOrOgoLbBsAfkm4A,5179
|
|
6
6
|
halfedge/py.typed,sha256=cnjZxaS4F-N8wLWhQK9YvZ-PaN5T1TK94E9VhPT_LGg,155
|
|
7
|
-
halfedge/type_attrib.py,sha256=
|
|
7
|
+
halfedge/type_attrib.py,sha256=vZ6ywH2_N5dDzDPR7y3G6J2-WZ6qwVc386pRrXVT1hI,20474
|
|
8
8
|
halfedge/validations.py,sha256=G3YmJnxX5Q_C3Jhbd7740oTngvsOIllfSwLa81jY3d0,4544
|
|
9
|
-
halfedge-0.12.
|
|
10
|
-
halfedge-0.12.
|
|
11
|
-
halfedge-0.12.
|
|
9
|
+
halfedge-0.12.1.dist-info/WHEEL,sha256=e_m4S054HL0hyR3CpOk-b7Q7fDX6BuFkgL5OjAExXas,80
|
|
10
|
+
halfedge-0.12.1.dist-info/METADATA,sha256=umOegECYyb4g5uVU0BZU0eJto7ZxSd2LNTyOzaiukn0,6779
|
|
11
|
+
halfedge-0.12.1.dist-info/RECORD,,
|
|
File without changes
|