mirror of
https://github.com/pim-n/pg-rad
synced 2026-03-10 19:48:12 +01:00
add size of path as attribute to Path
This commit is contained in:
@ -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.")
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user