We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f709cdf + 5650b68 commit 516620cCopy full SHA for 516620c
pyRadPlan/cst/_cst.py
@@ -270,7 +270,8 @@ def create_cst(
270
idx_list = []
271
# Only one scenario (3D CT)
272
if not isinstance(vdata[3], list):
273
- idx_list.append(vdata[3].astype(int).tolist())
+ idx_list.append(np.asarray(vdata[3]).astype(int).tolist())
274
+
275
# Multiple scenarios (4D CT)
276
else:
277
for vdata_scen in vdata[3]:
pyproject.toml
@@ -10,7 +10,7 @@ pyRadPlan = ["data/**/*"]
10
11
[project]
12
name = "pyRadPlan"
13
-version = "0.2.7"
+version = "0.2.8"
14
# dynamic = ["version"] # Will be used in the future
15
authors = [
16
{ name="Niklas Wahl", email = "[email protected]"},
0 commit comments