tmp update

This commit is contained in:
2022-02-19 10:51:15 +08:00
parent d4e4d7fd68
commit 109958957f
9 changed files with 1963 additions and 0 deletions

24
cube.geo Normal file
View File

@@ -0,0 +1,24 @@
//+
Point(1) = {40, 40, -20, 5};
//+
Point(2) = {60, 40, -20, 5};
//+
Point(3) = {60, 60, -20, 5};
//+
Point(4) = {40, 60, -20, 5};
//+
Line(1) = {4, 1};
//+
Line(2) = {1, 2};
//+
Line(3) = {2, 3};
//+
Line(4) = {3, 4};
//+
Curve Loop(1) = {1, 2, 3, 4};
//+
Plane Surface(1) = {1};
//+
Extrude {0, 0, -40} {
Surface{1};
}