Esempio n. 1
0
 public IntersectionMesh(IIdMesh <T> Mesh)
     : base(Mesh)
 {
     insideCell = null;
 }
Esempio n. 2
0
 public BoundaryMesh(IIdMesh <T> mesh)
     : base(mesh)
 {
 }
Esempio n. 3
0
 public IntersectionMesh(IIdMesh <T> Mesh, int firstCell_NodeIndice)
     : base(Mesh)
 {
     insideCell = Cells[firstCell_NodeIndice];
 }
Esempio n. 4
0
 public Mesh(IIdMesh <T> Mesh)
 {
     mesh = Mesh;
 }