/// <summary>
 /// creates the geometry graph corresponding to the tree
 /// </summary>
 public override void CreateGeometryGraph()
 {
     this.GeometryGraph = GeometryGraphCreator.CreatePhyloTree(this);
 }
Example #2
0
 /// <summary>
 /// creates the geometry graph corresponding to the tree
 /// </summary>
 public override Core.Layout.GeometryGraph CreateGeometryGraph()
 {
     return(this.GeometryGraph = GeometryGraphCreator.CreatePhyloTree(this));
 }