add size of path as attribute to Path

This commit is contained in:
Pim Nelissen
2026-02-12 14:41:05 +01:00
parent 4f72fe8ff4
commit 8274b5e371

View File

@ -70,6 +70,11 @@ class Path:
] ]
self.z = z self.z = z
self.size = (
np.ceil(max(self.x_list)),
np.ceil(max(self.y_list)),
z
)
logger.debug("Path created.") logger.debug("Path created.")