From bbe1f99d0e163ef67664ab87047492dad8afbcf3 Mon Sep 17 00:00:00 2001
From: Christophe Geuzaine <cgeuzaine@ulg.ac.be>
Date: Wed, 30 Jun 2004 07:52:49 +0000
Subject: [PATCH] really simplex cube example

---
 benchmarks/3d/Cube-01.geo | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 benchmarks/3d/Cube-01.geo

diff --git a/benchmarks/3d/Cube-01.geo b/benchmarks/3d/Cube-01.geo
new file mode 100644
index 0000000000..b7cb77da09
--- /dev/null
+++ b/benchmarks/3d/Cube-01.geo
@@ -0,0 +1,14 @@
+lc = 0.3;
+Point(1) = {0.0,0.0,0.0,lc};         
+Point(2) = {1,0.0,0.0,lc};         
+Point(3) = {1,1,0.0,lc};         
+Point(4) = {0,1,0.0,lc};         
+Line(1) = {4,3};         
+Line(2) = {3,2};         
+Line(3) = {2,1};         
+Line(4) = {1,4};         
+Line Loop(5) = {2,3,4,1};         
+Plane Surface(6) = {5};         
+Extrude Surface { 6, {0,0.0,1} };         
+Surface Loop(29) = - {28,15,-6,19,23,27};
+Volume(30) = {29};
-- 
GitLab