示例#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;
 }