From 2341f8aa42dcfefb3fa40c5e29d86afa1106097e Mon Sep 17 00:00:00 2001 From: Maxime Gimeno Date: Tue, 14 Jun 2016 11:15:17 +0200 Subject: [PATCH] Fix Create_bbox_mesh_plugin --- .../demo/Polyhedron/Plugins/PCA/Create_bbox_mesh_plugin.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Polyhedron/demo/Polyhedron/Plugins/PCA/Create_bbox_mesh_plugin.cpp b/Polyhedron/demo/Polyhedron/Plugins/PCA/Create_bbox_mesh_plugin.cpp index 1d8390eb283..bc717666725 100644 --- a/Polyhedron/demo/Polyhedron/Plugins/PCA/Create_bbox_mesh_plugin.cpp +++ b/Polyhedron/demo/Polyhedron/Plugins/PCA/Create_bbox_mesh_plugin.cpp @@ -135,10 +135,10 @@ void Create_bbox_mesh_plugin::bbox(bool extended) const double delta_z = ( bbox.zmax() - bbox.zmin() ) / 20.; bbox = Scene_interface::Bbox( bbox.xmin() - delta_x, - bbox.xmax() + delta_x, bbox.ymin() - delta_y, - bbox.ymax() + delta_y, bbox.zmin() - delta_z, + bbox.xmax() + delta_x, + bbox.ymax() + delta_y, bbox.zmax() + delta_z); }