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