Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
meshmode
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ellis Hoag
meshmode
Commits
21a3e981
Commit
21a3e981
authored
9 years ago
by
Shidong Jiang
Browse files
Options
Downloads
Patches
Plain Diff
Multiple mesh example
parent
de6147ee
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
examples/multiple-meshes.py
+26
-0
26 additions, 0 deletions
examples/multiple-meshes.py
with
26 additions
and
0 deletions
examples/multiple-meshes.py
0 → 100644
+
26
−
0
View file @
21a3e981
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
()
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment