예제 #1
0
 // Remove myself from the constraint graph.
 public override void removeFromGraph()
 {
     if (myOutput != null)
     {
         myOutput.removeConstraint(this);
     }
     satisfied = false;
 }
예제 #2
0
 // Remove myself from the constraint graph.
 public override void removeFromGraph()
 {
     base.removeFromGraph();
     if (scale != null)
     {
         scale.removeConstraint(this);
     }
     if (offset != null)
     {
         offset.removeConstraint(this);
     }
 }
예제 #3
0
 // Remove myself from the constraint graph.
 public override void removeFromGraph()
 {
     if (v1 != null)
     {
         v1.removeConstraint(this);
     }
     if (v2 != null)
     {
         v2.removeConstraint(this);
     }
     direction = nodirection;
 }