Exemplo n.º 1
0
 public static void SetRelationship(GShape parent, params GShape[] childs)
 {
     foreach (var c in childs)
     {
         parent.Childs.Add(c);
         c.Parents.Add(parent);
     }
 }
Exemplo n.º 2
0
 public GShapeRule(GShape shape)
 {
     gShape = shape;
 }