From f211be24dce5314e48debd457606bbb83a6b2160 Mon Sep 17 00:00:00 2001 From: Daniil Kazantsev Date: Tue, 1 Dec 2020 11:09:17 +0000 Subject: [PATCH] ellipcyl bug fixed --- Wrappers/Python/src/TomoP3D.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Wrappers/Python/src/TomoP3D.pyx b/Wrappers/Python/src/TomoP3D.pyx index e2a9183..3e9d9be 100644 --- a/Wrappers/Python/src/TomoP3D.pyx +++ b/Wrappers/Python/src/TomoP3D.pyx @@ -51,7 +51,7 @@ class Objects3D(Enum): ELLIPSOID = 'ellipsoid' CONE = 'cone' CUBOID = 'cuboid' - ELLIPCYLINDER = 'ellipticalcylinder' + ELLIPCYLINDER = 'elliptical_cylinder' @cython.boundscheck(False) @cython.wraparound(False)