Skip to content
Snippets Groups Projects
Commit bcec6a96 authored by Stéphane  DALLONGEVILLE's avatar Stéphane DALLONGEVILLE
Browse files

fixed block for 3D ROI

parent 0ace3d15
No related branches found
No related tags found
No related merge requests found
...@@ -141,9 +141,9 @@ public class Convexify extends EzPlug implements ROIBlock ...@@ -141,9 +141,9 @@ public class Convexify extends EzPlug implements ROIBlock
output = new ROI3DPolygonalMesh(qhull); output = new ROI3DPolygonalMesh(qhull);
// copy position info // copy position info
final ROI3D roi2d = (ROI3D) roi; final ROI3D roi3d = (ROI3D) roi;
((ROI3D) output).setT(roi2d.getT()); ((ROI3D)output).setT(roi3d.getT());
((ROI2D) output).setC(roi2d.getC()); ((ROI3D)output).setC(roi3d.getC());
} }
} }
catch (Throwable t) catch (Throwable t)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment