From a760bf78ebacfcfbba6d7f33e1dc4be082d7cebf Mon Sep 17 00:00:00 2001
From: Christophe Geuzaine <cgeuzaine@ulg.ac.be>
Date: Fri, 25 Mar 2011 06:36:51 +0000
Subject: [PATCH]

---
 benchmarks/boolean/wikipedia.py | 36 +++++++++++++++++++++++++++++++++
 1 file changed, 36 insertions(+)
 create mode 100644 benchmarks/boolean/wikipedia.py

diff --git a/benchmarks/boolean/wikipedia.py b/benchmarks/boolean/wikipedia.py
new file mode 100644
index 0000000000..3705487dee
--- /dev/null
+++ b/benchmarks/boolean/wikipedia.py
@@ -0,0 +1,36 @@
+#!/usr/bin/env python
+
+from gmshpy import *
+
+# from http://en.wikipedia.org/wiki/Constructive_solid_geometry
+
+R = 1.4;
+s = .7;
+t = 1.25;
+myModel = GModel();
+myModel.addBlock([-R,-R,-R],[R,R,R]);
+
+myTool = GModel();
+myTool.addSphere(0,0,0,R*t);
+
+myModel.computeBooleanIntersection(myTool);
+
+myTool2 = GModel();
+myTool2.addCylinder([-2*R,0,0],[2*R,0,0],R*s);
+
+myTool3 = GModel();
+myTool3.addCylinder([0,-2*R,0],[0,2*R,0],R*s);
+
+myModel2 = GModel();
+myModel2.addCylinder([0,0,-2*R],[0,0,2*R],R*s);
+myModel2.computeBooleanUnion(myTool2);
+myModel2.computeBooleanUnion(myTool3);
+
+myModel.computeBooleanDifference(myModel2);
+
+myModel.setAsCurrent();
+
+myModel.mesh(3);
+
+#FlGui.instance();
+#FlGui.run();
-- 
GitLab