コード例 #1
0
 public void DoForeachCell(ForeachCellDeleg deleg)
 {
     foreach (MetaballCell cell in this._cells)
     {
         deleg(cell);
     }
 }
コード例 #2
0
ファイル: MetaballCellCluster.cs プロジェクト: ming81/SciSim
 public void DoForeachCell(ForeachCellDeleg deleg)
 {
     foreach (MetaballCell c in _cells)
     {
         deleg(c);
     }
 }
コード例 #3
0
 public void DoForeachCell(ForeachCellDeleg deleg)
 {
     deleg((MetaballCell)this);
     foreach (SkinnedMetaballCell child in this.children)
     {
         child.DoForeachCell(deleg);
     }
 }
コード例 #4
0
ファイル: SkinnedMetaballCell.cs プロジェクト: ming81/SciSim
    public void DoForeachCell(ForeachCellDeleg deleg)
    {
        deleg(this);

        foreach (SkinnedMetaballCell c in children)
        {
            c.DoForeachCell(deleg);
        }
    }