# Mesh "Matryoshka"

**URL:** https://community.freefem.org/t/mesh-matryoshka/663
**Category:** General Discussion
**Created:** [November 20, 2020, 10:46am UTC](https://community.freefem.org/t/mesh-matryoshka/663 "2020-11-20T10:46:54Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![Raffa2s](https://yyz2.discourse-cdn.com/flex030/user_avatar/community.freefem.org/raffa2s/32/321_2.png) [@Raffa2s](https://community.freefem.org/u/Raffa2s)
#### Post date: [November 20, 2020, 10:46am UTC](https://community.freefem.org/t/mesh-matryoshka/663/1 "2020-11-20T10:46:54Z")

</div>

Hi,  
I had created a mesh using meshS and I want to put another meshs inside it in a specific position.  
The other meshes are created with GMSH.  
Do you know how to do that?

Thank you

---

<div class="post-metadata">

### Author: ![Lily](https://avatars.discourse-cdn.com/v4/letter/l/97f17d/32.png) [@Lily](https://community.freefem.org/u/Lily)
#### Post date: [November 20, 2020, 2:41pm UTC](https://community.freefem.org/t/mesh-matryoshka/663/2 "2020-11-20T14:41:35Z")

</div>

Hello,  
If all meshes have the coordinates you want, you can glue them in FreeFem directly. For instance :  
Th1 = readmesh(“themeshyoucreated.mesh”);  
Th2 = readmesh(“GMSHmesh.mesh”);  
mesh Th = Th1 + Th2.  
Meshes created with GMSH can be translated in GMSH to the coordinates you want.  
Hope it helps.  
Lily

---

<div class="post-metadata">

### Author: ![Raffa2s](https://yyz2.discourse-cdn.com/flex030/user_avatar/community.freefem.org/raffa2s/32/321_2.png) [@Raffa2s](https://community.freefem.org/u/Raffa2s)
#### Post date: [November 20, 2020, 3:32pm UTC](https://community.freefem.org/t/mesh-matryoshka/663/3 "2020-11-20T15:32:24Z")

</div>

Thanks! that is working!  
Unfortunately, I don’t have positioned the objects beforehand. Now I try to move mesh with “movemesh” command
