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