override internal void DrawBranches(Graphic g) { HTDrawNode child = null; for (IEnumerator i = Children(); i.MoveNext();) { child = (HTDrawNode)i.Current; HTGeodesic geod = (HTGeodesic)geodesics[child]; if (geod != null) { geod.Draw(g, child.GetBranchColor()); } child.DrawBranches(g); } }
internal void DrawBranches(Graphic g) { drawRoot.DrawBranches(g); }