コード例 #1
0
ファイル: GeoRoot.cs プロジェクト: bblpny/Quad64
 private GlobalCollection(GeoRoot This)
 {
     this.This = This;
 }
コード例 #2
0
 protected GeoParent(GeoRoot Root)
 {
     this.Root = Root ?? (GeoRoot)this;
 }
コード例 #3
0
ファイル: GeoRoot.cs プロジェクト: bblpny/Quad64
 public Enumerator(GeoRoot Parent)
 {
     Remaining = null == Parent ? 0u : Parent.Num;
     Active    = (Remaining == 0) ? null : Parent.Last;
 }