diff --git a/Common/CommandLine.cpp b/Common/CommandLine.cpp
index dadf048f6205370e3698f185b24738692d1d8a59..6f2d7e86094ee1ff25ebc20c59cf81797da11fe7 100644
--- a/Common/CommandLine.cpp
+++ b/Common/CommandLine.cpp
@@ -580,6 +580,8 @@ void GetOptions(int argc, char *argv[])
             CTX::instance()->mesh.algo3d = ALGO_3D_FRONTAL_DEL;
           else if(!strncmp(argv[i], "delhex3d", 8))
             CTX::instance()->mesh.algo3d = ALGO_3D_FRONTAL_HEX;
+		  else if(!strncmp(argv[i], "rtree3d", 9))
+			CTX::instance()->mesh.algo3d = ALGO_3D_RTREE;
           else
             Msg::Fatal("Unknown mesh algorithm");
           i++;
diff --git a/Common/DefaultOptions.h b/Common/DefaultOptions.h
index 560a279f8e1b367864066efe1fa9b5aa1efd6e48..b7120cf054341fbf4a8bbe8e238c20587f6712f8 100644
--- a/Common/DefaultOptions.h
+++ b/Common/DefaultOptions.h
@@ -772,7 +772,7 @@ StringXNumber MeshOptions_Number[] = {
 #else
     ALGO_3D_FRONTAL ,
 #endif
-    "3D mesh algorithm (1=Delaunay, 4=Frontal, 5=Frontal Delaunay, 6=Frontal Hex, 7=MMG3D)" },
+    "3D mesh algorithm (1=Delaunay, 4=Frontal, 5=Frontal Delaunay, 6=Frontal Hex, 7=MMG3D, 9=R-tree)" },
   { F|O, "AngleSmoothNormals" , opt_mesh_angle_smooth_normals , 30.0 ,
     "Threshold angle below which normals are not smoothed" },
   { F|O, "AnisoMax" , opt_mesh_aniso_max, 1.e33,
diff --git a/Common/GmshDefines.h b/Common/GmshDefines.h
index 3fdcb551b4f813ea4eb3579b358ddfa357f3eb52..874b15a4d25e809c33454429269a9e7dd0ca1091 100644
--- a/Common/GmshDefines.h
+++ b/Common/GmshDefines.h
@@ -223,6 +223,7 @@
 #define ALGO_3D_FRONTAL_DEL    5
 #define ALGO_3D_FRONTAL_HEX    6
 #define ALGO_3D_MMG3D          7
+#define ALGO_3D_RTREE          9
 
 // Meshing methods
 #define MESH_NONE         0
diff --git a/Common/Options.cpp b/Common/Options.cpp
index 657064bec7522867529c92e5533fc26208b02d20..f4c3dce18f0c9094ddb84a8f7b65a0410db2a0c9 100644
--- a/Common/Options.cpp
+++ b/Common/Options.cpp
@@ -5046,6 +5046,9 @@ double opt_mesh_algo3d(OPT_ARGS_NUM)
     case ALGO_3D_FRONTAL:
       FlGui::instance()->options->mesh.choice[3]->value(1);
       break;
+	case ALGO_3D_RTREE:
+	  FlGui::instance()->options->mesh.choice[3]->value(5);
+	  break;
     case ALGO_3D_DELAUNAY:
     default:
       FlGui::instance()->options->mesh.choice[3]->value(0);
diff --git a/Fltk/optionWindow.cpp b/Fltk/optionWindow.cpp
index ecd397fe4e243f7e88de3f7aee874c2f990986b4..56cddad00b682dc28e8b1a058bbeaff94a9207fb 100644
--- a/Fltk/optionWindow.cpp
+++ b/Fltk/optionWindow.cpp
@@ -517,6 +517,7 @@ static void mesh_options_ok_cb(Fl_Widget *w, void *data)
                   (o->mesh.choice[3]->value() == 2) ? ALGO_3D_FRONTAL_DEL :
                   (o->mesh.choice[3]->value() == 3) ? ALGO_3D_FRONTAL_HEX :
                   (o->mesh.choice[3]->value() == 4) ? ALGO_3D_MMG3D :
+				  (o->mesh.choice[3]->value() == 5) ? ALGO_3D_RTREE :
                   ALGO_3D_FRONTAL);
   opt_mesh_algo_recombine(0, GMSH_SET, o->mesh.choice[1]->value());
   opt_mesh_recombine_all(0, GMSH_SET, o->mesh.butt[21]->value());
@@ -2129,6 +2130,7 @@ optionWindow::optionWindow(int deltaFontSize)
         {"Frontal Delaunay", 0, 0, 0},
         {"Frontal Hex", 0, 0, 0},
         {"MMG3D", 0, 0, 0},
+		{"R-tree", 0, 0, 0},
         {0}
       };
       static Fl_Menu_Item menu_recombination_algo[] = {
diff --git a/Mesh/Generator.cpp b/Mesh/Generator.cpp
index c22b42aabc4694641b8597ded5997aaaf090a935..47570a25cef81ff4f0556d87b09d62d1dce86b5f 100644
--- a/Mesh/Generator.cpp
+++ b/Mesh/Generator.cpp
@@ -31,6 +31,7 @@
 #include "CenterlineField.h"
 #include "Field.h"
 #include "Options.h"
+#include "Simple3D.h"
 
 #if defined(HAVE_POST)
 #include "PView.h"
@@ -556,6 +557,10 @@ static void Mesh3D(GModel *m)
   FindConnectedRegions(delaunay, connected);
   for(unsigned int i = 0; i < connected.size(); i++){
     MeshDelaunayVolume(connected[i]);
+	if(CTX::instance()->mesh.algo3d==ALGO_3D_RTREE){
+	  Filler f;
+	  f.treat_region(connected[i][0]);
+	}
   }
 
   double t2 = Cpu();