Beispiel #1
0
 /// <summary>
 /// Adds anchorToAdd to targetAnchor as Outgoing Anchor.
 /// </summary>
 /// <param name="targetAnchor"></param>
 /// <param name="anchorToAdd"></param>
 public static void AddOutgoingSpline(Anchor targetAnchor, Anchor anchorToAdd)
 {
     AddSpline(targetAnchor, anchorToAdd);
 }
Beispiel #2
0
 /// <summary>
 /// Removes Redundant spline for anchors incoming and outgoing splines
 /// </summary>
 /// <param name="anchor"></param>
 public static void CleanupSplines(Anchor anchor)
 {
     RemoveRedundantSplinesFor(anchor.OutgoingSplines);
     RemoveRedundantSplinesFor(anchor.IncomingSplines);
 }
Beispiel #3
0
 /// <summary>
 /// Adds anchorToAdd to targetAnchor as Incoming Anchor
 /// </summary>
 /// <param name="targetAnchor"></param>
 /// <param name="anchorToAdd"></param>
 public static void AddIncomingSpline(Anchor targetAnchor, Anchor anchorToAdd)
 {
     AddSpline(anchorToAdd, targetAnchor);
 }