Example #1
0
 static IEnumerable<Node> GetThirdLayer(Graph graph)
 {
     var layerIds = new[] {"Comments_3", "Attributes_4", "Modifiers_5"};
     foreach (string id in layerIds)
         yield return graph.FindGeometryNode(id);
 }