mirror of
https://github.com/NGSolve/netgen.git
synced 2025-01-24 20:00:33 +05:00
remove python test-output
This commit is contained in:
parent
24a67bcf88
commit
a50f65b7f7
@ -27,7 +27,6 @@ def MakeRectangle (geo, p1, p2, bc=None, bcs=None, **args):
|
||||
p1x,p2x = min(p1x,p2x), max(p1x, p2x)
|
||||
p1y,p2y = min(p1y,p2y), max(p1y, p2y)
|
||||
if not bcs: bcs=4*[bc]
|
||||
print ("bcs = ", bcs)
|
||||
pts = [geo.AppendPoint(*p) for p in [(p1x,p1y), (p2x, p1y), (p2x, p2y), (p1x, p2y)]]
|
||||
for p1,p2,bc in [(0,1,bcs[0]), (1, 2, bcs[1]), (2, 3, bcs[2]), (3, 0, bcs[3])]:
|
||||
geo.Append( ["line", pts[p1], pts[p2]], bc=bc, **args)
|
||||
|
Loading…
Reference in New Issue
Block a user