Skip to content
Snippets Groups Projects
Commit 21a3e981 authored by Shidong Jiang's avatar Shidong Jiang
Browse files

Multiple mesh example

parent de6147ee
No related branches found
No related tags found
No related merge requests found
from __future__ import division
import numpy as np # noqa
order = 4
def main():
from meshmode.mesh.generation import ( # noqa
make_curve_mesh, starfish)
mesh1 = make_curve_mesh(starfish, np.linspace(0, 1, 20), 4)
from meshmode.mesh.processing import affine_map, merge_disjoint_meshes
mesh2 = affine_map(mesh1, b=np.array([2, 3]))
mesh = merge_disjoint_meshes((mesh1, mesh2))
from meshmode.mesh.visualization import draw_2d_mesh
draw_2d_mesh(mesh, set_bounding_box=True)
import matplotlib.pyplot as pt
pt.show()
if __name__ == "__main__":
main()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment