File: test_show_level_set.py

package info (click to toggle)
python-dmsh 0.2.19-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 480 kB
  • sloc: python: 1,893; makefile: 5
file content (11 lines) | stat: -rw-r--r-- 181 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
import dmsh


def test_show():
    # geo = dmsh.Circle([0.0, 0.0], 1.0)
    geo = dmsh.Rectangle(-1.0, +1.0, -1.0, +1.0)
    geo.show()


if __name__ == "__main__":
    test_show()